This commit is contained in:
4DBug
2026-03-03 17:25:37 -06:00
parent c10eca565f
commit aeea92d752
12 changed files with 104 additions and 168 deletions

20
modules/hosts/laptop.nix Normal file
View File

@@ -0,0 +1,20 @@
{ den, ... }: {
den.aspects.laptop = {
includes = with den.aspects; [
common
amdgpu
cloudflare-warp
cad
];
nixos = {
networking.hostName = "nix";
services.logind.settings.Login = {
HandleLidSwitch = "ignore";
HandleLidSwitchDocked = "ignore";
};
};
};
}