Compare commits
2 Commits
bed80cefa0
...
c2fc0d01f2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c2fc0d01f2 | ||
|
|
c906bb66e1 |
@ -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";
|
||||
|
||||
14
modules_dentritic/features/core/container.nix
Normal file
14
modules_dentritic/features/core/container.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ self, inputs, ... }:
|
||||
{
|
||||
flake = {
|
||||
nixosModules = {
|
||||
distrobox = { pkgs, lib, ... }: {
|
||||
virtualisation.podman = {
|
||||
enable = true;
|
||||
dockerCompat = true;
|
||||
};
|
||||
environment.systemPackages = [ pkgs.distrobox ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
@ -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": "",
|
||||
|
||||
@ -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;
|
||||
*/
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@ -16,6 +16,7 @@
|
||||
self.nixosModules.commonConfig
|
||||
self.nixosModules.bootloader
|
||||
self.nixosModules.niri
|
||||
#self.nixosModules.distrobox
|
||||
];
|
||||
|
||||
networking = {
|
||||
@ -23,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 = {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user