pub-solar-os/hosts/PubSolarOS.nix

20 lines
460 B
Nix
Raw Normal View History

2021-10-24 20:03:28 +00:00
{ profiles, ... }:
{
### root password is empty by default ###
2021-10-24 20:03:28 +00:00
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"; };
}