mirror of
https://github.com/divnix/digga.git
synced 2024-12-25 17:14:38 +03:00
13 lines
287 B
Nix
13 lines
287 B
Nix
{ suites, ... }:
|
|
{
|
|
### root password is empty by default ###
|
|
imports = suites.core;
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
fileSystems."/" = { device = "/dev/disk/by-label/nixos"; };
|
|
}
|