diff options
author | Soispha <soispha@vhack.eu> | 2023-04-21 18:35:15 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:31:18 +0200 |
commit | f653d54bb8a0c5fc1d2f6fa0b18f36fe910aa5c6 (patch) | |
tree | 59895eb6bc42386d7481af82f6651e09637a3130 /hosts/apzu/default.nix | |
parent | Feat(host/apzu): Add (diff) | |
download | nixos-config-f653d54bb8a0c5fc1d2f6fa0b18f36fe910aa5c6.zip |
Fix(hosts): Rename configuration.nix to default.nix
Diffstat (limited to 'hosts/apzu/default.nix')
-rw-r--r-- | hosts/apzu/default.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/hosts/apzu/default.nix b/hosts/apzu/default.nix new file mode 100644 index 00000000..2a21ffb9 --- /dev/null +++ b/hosts/apzu/default.nix @@ -0,0 +1,27 @@ +# vim: ts=2 +{ + config, + lib, + nixpkgs, + home-manager, + ... +}: { + imports = [ + ./hardware + ./networking.nix + + ../../system + ]; + + soispha = { + fs.backup = { + enable = true; + backupDiskUuid = "d1c6e0f6-1837-40fd-bb29-251d5ea0ddb0"; + }; + users = { + hashedPassword = "$y$jFT$qi3wS9njrMl2y55b3NOBI0$j40Qt6AAkMSfZ82KPhqMaUaPztWtPps1wOqaXaF/L.6"; # TODO change this to a unique one + }; + }; + + system.stateVersion = "23.05"; +} |