This commit is contained in:
parent
c906bb66e1
commit
c2fc0d01f2
@ -30,6 +30,7 @@
|
|||||||
vulkan-utility-libraries
|
vulkan-utility-libraries
|
||||||
vk-bootstrap
|
vk-bootstrap
|
||||||
vulkan-memory-allocator
|
vulkan-memory-allocator
|
||||||
|
vulkan-volk
|
||||||
# Wayland
|
# Wayland
|
||||||
wayland
|
wayland
|
||||||
wayland-protocols
|
wayland-protocols
|
||||||
@ -41,6 +42,7 @@
|
|||||||
# Other libraries
|
# Other libraries
|
||||||
glfw3
|
glfw3
|
||||||
SDL2
|
SDL2
|
||||||
|
sdl3
|
||||||
fmt
|
fmt
|
||||||
imgui
|
imgui
|
||||||
tinyobjloader
|
tinyobjloader
|
||||||
@ -64,6 +66,7 @@
|
|||||||
pkgs.shaderc.lib
|
pkgs.shaderc.lib
|
||||||
pkgs.SDL2
|
pkgs.SDL2
|
||||||
pkgs.vk-bootstrap
|
pkgs.vk-bootstrap
|
||||||
|
#pkgs.sdl3
|
||||||
];
|
];
|
||||||
VK_LAYER_PATH = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d";
|
VK_LAYER_PATH = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d";
|
||||||
VULKAN_SDK = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d";
|
VULKAN_SDK = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d";
|
||||||
|
|||||||
@ -240,28 +240,13 @@
|
|||||||
"lockScreenBlur": 0,
|
"lockScreenBlur": 0,
|
||||||
"lockScreenTint": 0,
|
"lockScreenTint": 0,
|
||||||
"keybinds": {
|
"keybinds": {
|
||||||
"keyUp": [
|
"keyUp": ["Up"],
|
||||||
"Up"
|
"keyDown": ["Down"],
|
||||||
],
|
"keyLeft": ["Left"],
|
||||||
"keyDown": [
|
"keyRight": ["Right"],
|
||||||
"Down"
|
"keyEnter": ["Return", "Enter"],
|
||||||
],
|
"keyEscape": ["Esc"],
|
||||||
"keyLeft": [
|
"keyRemove": ["Del"]
|
||||||
"Left"
|
|
||||||
],
|
|
||||||
"keyRight": [
|
|
||||||
"Right"
|
|
||||||
],
|
|
||||||
"keyEnter": [
|
|
||||||
"Return",
|
|
||||||
"Enter"
|
|
||||||
],
|
|
||||||
"keyEscape": [
|
|
||||||
"Esc"
|
|
||||||
],
|
|
||||||
"keyRemove": [
|
|
||||||
"Del"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"reverseScroll": false,
|
"reverseScroll": false,
|
||||||
"smoothScrollEnabled": true
|
"smoothScrollEnabled": true
|
||||||
@ -618,11 +603,7 @@
|
|||||||
"autoHideMs": 2000,
|
"autoHideMs": 2000,
|
||||||
"overlayLayer": true,
|
"overlayLayer": true,
|
||||||
"backgroundOpacity": 1,
|
"backgroundOpacity": 1,
|
||||||
"enabledTypes": [
|
"enabledTypes": [0, 1, 2],
|
||||||
0,
|
|
||||||
1,
|
|
||||||
2
|
|
||||||
],
|
|
||||||
"monitors": []
|
"monitors": []
|
||||||
},
|
},
|
||||||
"audio": {
|
"audio": {
|
||||||
@ -691,7 +672,7 @@
|
|||||||
"enabled": true,
|
"enabled": true,
|
||||||
"screenOffTimeout": 600,
|
"screenOffTimeout": 600,
|
||||||
"lockTimeout": 600,
|
"lockTimeout": 600,
|
||||||
"suspendTimeout": 36000,
|
"suspendTimeout": 1200,
|
||||||
"fadeDuration": 5,
|
"fadeDuration": 5,
|
||||||
"screenOffCommand": "",
|
"screenOffCommand": "",
|
||||||
"lockCommand": "",
|
"lockCommand": "",
|
||||||
|
|||||||
@ -3,7 +3,11 @@
|
|||||||
perSystem = { pkgs, lib, ... }: {
|
perSystem = { pkgs, lib, ... }: {
|
||||||
packages.myNoctalia = inputs.wrapper-modules.wrappers.noctalia-shell.wrap {
|
packages.myNoctalia = inputs.wrapper-modules.wrappers.noctalia-shell.wrap {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
settings = {
|
settings =
|
||||||
|
(builtins.fromJSON
|
||||||
|
(builtins.readFile ./noctalia.json)).settings;
|
||||||
|
/*
|
||||||
|
{
|
||||||
bar = {
|
bar = {
|
||||||
barType = "floating";
|
barType = "floating";
|
||||||
position = "left";
|
position = "left";
|
||||||
@ -54,8 +58,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
#(builtins.fromJSON
|
*/
|
||||||
# (builtins.readFile ./noctalia.json)).settings;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -16,7 +16,7 @@
|
|||||||
self.nixosModules.commonConfig
|
self.nixosModules.commonConfig
|
||||||
self.nixosModules.bootloader
|
self.nixosModules.bootloader
|
||||||
self.nixosModules.niri
|
self.nixosModules.niri
|
||||||
self.nixosModules.distrobox
|
#self.nixosModules.distrobox
|
||||||
];
|
];
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
@ -24,6 +24,32 @@
|
|||||||
networkmanager = {
|
networkmanager = {
|
||||||
enable = true;
|
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 = {
|
services = {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user