os/hosts/NixOS.nix
2021-02-03 13:16:21 -07:00

13 lines
291 B
Nix

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