Files
nix/modules/hosts/styx.nix
2026-03-23 10:26:06 -05:00

27 lines
378 B
Nix

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