diff options
| author | mtgmonkey <mtgmonkey@nixos> | 2025-12-29 11:53:52 +0100 |
|---|---|---|
| committer | mtgmonkey <mtgmonkey@nixos> | 2025-12-29 11:53:52 +0100 |
| commit | 29f22c7c24ebdc1e24eb38ae0be6dd6366caba72 (patch) | |
| tree | d8373f20e2fe6dfe3c3de0393df673951ed22eaf /configuration.nix | |
| parent | 12438a9c8d5412258f976bb09881258462189222 (diff) | |
failed to (create current|crawl system) director(y|ies)
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" |
