2021-10-24 20:03:28 +00:00
|
|
|
{ profiles, ... }:
|
2020-01-07 20:04:32 +00:00
|
|
|
{
|
2020-01-11 06:49:18 +00:00
|
|
|
### 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
|
2021-10-25 20:43:02 +00:00
|
|
|
profiles.users.pub-solar
|
|
|
|
profiles.base-user
|
2021-10-24 20:03:28 +00:00
|
|
|
profiles.graphical
|
|
|
|
profiles.pub-solar-iso
|
|
|
|
];
|
2020-01-07 20:04:32 +00:00
|
|
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
|
|
|
networking.networkmanager.enable = true;
|
2020-07-14 04:04:34 +00:00
|
|
|
|
|
|
|
fileSystems."/" = { device = "/dev/disk/by-label/nixos"; };
|
2020-01-07 20:04:32 +00:00
|
|
|
}
|