forked from pub-solar/os
12 lines
291 B
Nix
12 lines
291 B
Nix
{
|
|
### root password is empty by default ###
|
|
imports = [ ../users/nixos ../users/root ];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
fileSystems."/" = { device = "/dev/disk/by-label/nixos"; };
|
|
}
|