Files
nix/modules/hosts/styx.nix
2026-03-03 21:48:51 -06:00

25 lines
367 B
Nix

{ den, ... }: {
den.aspects.styx = {
includes = with den.aspects; [
common
amdgpu
cloudflare-warp
cad
catppuccin
janitor
];
nixos = {
networking.hostName = "styx";
services.logind.settings.Login = {
HandleLidSwitch = "ignore";
HandleLidSwitchDocked = "ignore";
};
};
};
}