Files
nix/modules/hosts/styx.nix
T
2026-08-22 21:46:30 -05:00

33 lines
423 B
Nix

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