pub-solar-os/hosts/PubSolarOS.nix
2022-02-02 04:00:11 +01:00

16 lines
356 B
Nix

{ suites, ... }:
{
### root password is empty by default ###
### default password: pub-solar, optional: add your SSH keys
imports =
suites.iso
;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.networkmanager.enable = true;
fileSystems."/" = { device = "/dev/disk/by-label/nixos"; };
}