ark/hosts/NixOS.nix
2022-02-18 20:31:01 +03:00

13 lines
288 B
Nix

{
suites,
...
}:
{
### root password is empty by default ###
imports = suites.base;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.networkmanager.enable = true;
fileSystems."/" = { device = "/dev/disk/by-label/nixos"; };
}