a9e304617b
Co-authored-by: Benjamin Bädorf <hello@benjaminbaedorf.eu> Co-authored-by: teutat3s <teutates@mailbox.org> Reviewed-on: https://git.b12f.io/pub-solar/os/pulls/4 Co-authored-by: Benjamin Bädorf <b12f@noreply.example.org> Co-committed-by: Benjamin Bädorf <b12f@noreply.example.org>
13 lines
287 B
Nix
13 lines
287 B
Nix
{ suites, ... }:
|
|
{
|
|
### root password is empty by default ###
|
|
imports = suites.base;
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
fileSystems."/" = { device = "/dev/disk/by-label/nixos"; };
|
|
}
|