Initial commit of flake-based NixOS config for the whole haus

This commit is contained in:
2025-06-29 14:43:56 +03:00
commit c09b5d4043
21 changed files with 1148 additions and 0 deletions

17
hosts/puter/de/sway.nix Normal file
View File

@@ -0,0 +1,17 @@
{
config,
pkgs,
...
}: {
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
environment.systemPackages = with pkgs; [
mako # Notification daemon for Sway
playerctl
# Other Sway-specific packages
];
programs.light.enable = true; # For brightness control
}