about summary refs log tree commit diff stats
path: root/hosts/apzu/configuration.nix
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-04-21 18:35:15 +0200
committerSoispha <soispha@vhack.eu>2023-05-09 19:31:18 +0200
commitf653d54bb8a0c5fc1d2f6fa0b18f36fe910aa5c6 (patch)
tree59895eb6bc42386d7481af82f6651e09637a3130 /hosts/apzu/configuration.nix
parentFeat(host/apzu): Add (diff)
downloadnixos-config-f653d54bb8a0c5fc1d2f6fa0b18f36fe910aa5c6.tar.gz
nixos-config-f653d54bb8a0c5fc1d2f6fa0b18f36fe910aa5c6.zip
Fix(hosts): Rename configuration.nix to default.nix
Diffstat (limited to 'hosts/apzu/configuration.nix')
-rw-r--r--hosts/apzu/configuration.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/hosts/apzu/configuration.nix b/hosts/apzu/configuration.nix
deleted file mode 100644
index 2a21ffb9..00000000
--- a/hosts/apzu/configuration.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-# 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";
-}