pub-solar-os/hosts/PubSolarOS.nix
2021-10-24 22:03:28 +02:00

20 lines
460 B
Nix

{ profiles, ... }:
{
### root password is empty by default ###
imports = [
# profiles.networking
profiles.core
profiles.users.root # make sure to configure ssh keys
profiles.users.nixos
profiles.graphical
profiles.pub-solar-iso
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.networkmanager.enable = true;
fileSystems."/" = { device = "/dev/disk/by-label/nixos"; };
}