diff options
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/configuration.nix b/configuration.nix index 6ac1f89..5e4704b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -1,11 +1,7 @@ {lib, ...}: { boot.loader = { efi.canTouchEfiVariables = true; - limine = { - enable = true; - efiSupport = true; - }; - timeout = lib.mkDefault 2; + systemd-boot.enable = true; }; environment.persistence."/persist" = { enable = true; @@ -17,8 +13,14 @@ "/var/lib/systemd/coredump" "/etc/NetworkManager/system-connections" ]; + files = [ + "/etc/machine-id" + "/etc/shadow" + "/etc/shadow-" + ]; users."mtgmonkey" = { directories = [ + "conf" "Downloads" ".backups" ".ssh" @@ -66,6 +68,7 @@ users.users."mtgmonkey" = { isNormalUser = true; description = "mtgmonkey"; + initialPassword = "password"; extraGroups = [ "networkmanager" "wheel" |
