Tweaked some things
Some checks failed
Check config / build (push) Failing after 32s

This commit is contained in:
Alexandre 2026-08-06 18:01:11 +02:00
parent c906bb66e1
commit c2fc0d01f2
4 changed files with 45 additions and 32 deletions

View File

@ -30,6 +30,7 @@
vulkan-utility-libraries
vk-bootstrap
vulkan-memory-allocator
vulkan-volk
# Wayland
wayland
wayland-protocols
@ -41,6 +42,7 @@
# Other libraries
glfw3
SDL2
sdl3
fmt
imgui
tinyobjloader
@ -64,6 +66,7 @@
pkgs.shaderc.lib
pkgs.SDL2
pkgs.vk-bootstrap
#pkgs.sdl3
];
VK_LAYER_PATH = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d";
VULKAN_SDK = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d";

View File

@ -240,28 +240,13 @@
"lockScreenBlur": 0,
"lockScreenTint": 0,
"keybinds": {
"keyUp": [
"Up"
],
"keyDown": [
"Down"
],
"keyLeft": [
"Left"
],
"keyRight": [
"Right"
],
"keyEnter": [
"Return",
"Enter"
],
"keyEscape": [
"Esc"
],
"keyRemove": [
"Del"
]
"keyUp": ["Up"],
"keyDown": ["Down"],
"keyLeft": ["Left"],
"keyRight": ["Right"],
"keyEnter": ["Return", "Enter"],
"keyEscape": ["Esc"],
"keyRemove": ["Del"]
},
"reverseScroll": false,
"smoothScrollEnabled": true
@ -618,11 +603,7 @@
"autoHideMs": 2000,
"overlayLayer": true,
"backgroundOpacity": 1,
"enabledTypes": [
0,
1,
2
],
"enabledTypes": [0, 1, 2],
"monitors": []
},
"audio": {
@ -691,7 +672,7 @@
"enabled": true,
"screenOffTimeout": 600,
"lockTimeout": 600,
"suspendTimeout": 36000,
"suspendTimeout": 1200,
"fadeDuration": 5,
"screenOffCommand": "",
"lockCommand": "",

View File

@ -3,7 +3,11 @@
perSystem = { pkgs, lib, ... }: {
packages.myNoctalia = inputs.wrapper-modules.wrappers.noctalia-shell.wrap {
inherit pkgs;
settings = {
settings =
(builtins.fromJSON
(builtins.readFile ./noctalia.json)).settings;
/*
{
bar = {
barType = "floating";
position = "left";
@ -54,8 +58,7 @@
};
};
};
#(builtins.fromJSON
# (builtins.readFile ./noctalia.json)).settings;
*/
};
};
}

View File

@ -16,7 +16,7 @@
self.nixosModules.commonConfig
self.nixosModules.bootloader
self.nixosModules.niri
self.nixosModules.distrobox
#self.nixosModules.distrobox
];
networking = {
@ -24,6 +24,32 @@
networkmanager = {
enable = true;
};
/*
nftables = {
enable = true;
ruleset = ''
table inet filter {
chain input {
type filter hook input priority filter; policy drop;
iifname "enp*" accept
ct state { established, related } accept
tcp dport 22 accept
icmp type echo-request accept
}
chain forward {
type filter hook forward priority filter; policy accept;
}
chain output {
type filter hook output priority filter; policy accept;
}
}
'';
};
*/
};
services = {