nixos-config/roles/server.nix

10 lines
136 B
Nix
Raw Normal View History

2021-01-21 22:13:53 +04:00
{ inputs, ... }: {
imports = [
./base.nix
2023-02-16 18:51:34 +04:00
inputs.self.nixosProfiles.boot
2021-01-21 22:13:53 +04:00
];
2021-11-06 13:06:38 +04:00
security.sudo.wheelNeedsPassword = false;
2021-01-21 22:13:53 +04:00
}