nixos-cli, ly

This commit is contained in:
marty 2025-12-18 19:21:58 +01:00
parent bdf6c887b8
commit 4280614fe8
3 changed files with 14 additions and 4 deletions

View file

@ -10,8 +10,9 @@
./boot.nix
./shell.nix
./networking.nix
./gdm.nix
./display-manager.nix
./localization.nix
./fira-code.nix
./nixos-cli.nix
];
}

View file

@ -13,10 +13,9 @@
variant = "";
};
};
displayManager.gdm = {
displayManager.ly = {
enable = true;
wayland = true;
autoSuspend = false;
};
};
programs.hyprland.enable = true;
}

10
system/nixos-cli.nix Normal file
View file

@ -0,0 +1,10 @@
{
config,
pkgs,
lib,
...
}:
{
services.nixos-cli.enable = true;
}