Sebastian Walz 860d31cee1
Tohu vaBohu
2023-04-21 00:22:52 +02:00

29 lines
906 B
Nix

{ profiles, services, ... }:
Profile "Desktop."
{
configuration
= [
./fonts
./hardware
{
documentation
= {
enable = true;
dev.enable = true;
doc.enable = true;
info.enable = true;
man.enable = true;
nixos.enable = false;
};
security.pam.services
= {
# To make Swaylock unlockable.
swaylock = { /* empty */ };
};
}
];
isDesktop = true;
parents = with profiles; [ common ];
services = with services; [ docker printing ];
}