From f653d54bb8a0c5fc1d2f6fa0b18f36fe910aa5c6 Mon Sep 17 00:00:00 2001 From: Soispha Date: Fri, 21 Apr 2023 18:35:15 +0200 Subject: Fix(hosts): Rename configuration.nix to default.nix --- hosts/apzu/configuration.nix | 27 --------------------------- hosts/apzu/default.nix | 27 +++++++++++++++++++++++++++ hosts/lahmu/configuration.nix | 24 ------------------------ hosts/lahmu/default.nix | 24 ++++++++++++++++++++++++ hosts/mammun/configuration.nix | 23 ----------------------- hosts/mammun/default.nix | 23 +++++++++++++++++++++++ hosts/spawn/configuration.nix | 11 ----------- hosts/spawn/default.nix | 11 +++++++++++ hosts/tiamat/configuration.nix | 27 --------------------------- hosts/tiamat/default.nix | 27 +++++++++++++++++++++++++++ 10 files changed, 112 insertions(+), 112 deletions(-) delete mode 100644 hosts/apzu/configuration.nix create mode 100644 hosts/apzu/default.nix delete mode 100644 hosts/lahmu/configuration.nix create mode 100644 hosts/lahmu/default.nix delete mode 100644 hosts/mammun/configuration.nix create mode 100644 hosts/mammun/default.nix delete mode 100644 hosts/spawn/configuration.nix create mode 100644 hosts/spawn/default.nix delete mode 100644 hosts/tiamat/configuration.nix create mode 100644 hosts/tiamat/default.nix (limited to 'hosts') 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"; -} 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"; +} diff --git a/hosts/lahmu/configuration.nix b/hosts/lahmu/configuration.nix deleted file mode 100644 index a3274958..00000000 --- a/hosts/lahmu/configuration.nix +++ /dev/null @@ -1,24 +0,0 @@ -# vim: ts=2 -{ - config, - lib, - nixpkgs, - home-manager, - ... -}: { - imports = [ - ./hardware - ./networking.nix - - ../../system - ]; - - soispha = { - users = { - # enable = true; - hashedPassword = "$y$jFT$qi3wS9njrMl2y55b3NOBI0$j40Qt6AAkMSfZ82KPhqMaUaPztWtPps1wOqaXaF/L.6"; - }; - }; - - system.stateVersion = "23.05"; -} diff --git a/hosts/lahmu/default.nix b/hosts/lahmu/default.nix new file mode 100644 index 00000000..a3274958 --- /dev/null +++ b/hosts/lahmu/default.nix @@ -0,0 +1,24 @@ +# vim: ts=2 +{ + config, + lib, + nixpkgs, + home-manager, + ... +}: { + imports = [ + ./hardware + ./networking.nix + + ../../system + ]; + + soispha = { + users = { + # enable = true; + hashedPassword = "$y$jFT$qi3wS9njrMl2y55b3NOBI0$j40Qt6AAkMSfZ82KPhqMaUaPztWtPps1wOqaXaF/L.6"; + }; + }; + + system.stateVersion = "23.05"; +} diff --git a/hosts/mammun/configuration.nix b/hosts/mammun/configuration.nix deleted file mode 100644 index 0252e8e8..00000000 --- a/hosts/mammun/configuration.nix +++ /dev/null @@ -1,23 +0,0 @@ -# vim: ts=2 -{ - config, - lib, - nixpkgs, - home-manager, - pkgs, - ... -}: { - imports = [ - ./hardware - ./networking.nix - - ../../system - ]; - soispha = { - users = { - hashedPassword = "$y$jDT$O/42/7REOL50onRYcTV9R1$Ot3bPAh2raHmPN3yScP4wsJRtNqrMtTBzOq9oRJeRA0"; - }; - }; - - system.stateVersion = "23.05"; -} diff --git a/hosts/mammun/default.nix b/hosts/mammun/default.nix new file mode 100644 index 00000000..0252e8e8 --- /dev/null +++ b/hosts/mammun/default.nix @@ -0,0 +1,23 @@ +# vim: ts=2 +{ + config, + lib, + nixpkgs, + home-manager, + pkgs, + ... +}: { + imports = [ + ./hardware + ./networking.nix + + ../../system + ]; + soispha = { + users = { + hashedPassword = "$y$jDT$O/42/7REOL50onRYcTV9R1$Ot3bPAh2raHmPN3yScP4wsJRtNqrMtTBzOq9oRJeRA0"; + }; + }; + + system.stateVersion = "23.05"; +} diff --git a/hosts/spawn/configuration.nix b/hosts/spawn/configuration.nix deleted file mode 100644 index ff50f404..00000000 --- a/hosts/spawn/configuration.nix +++ /dev/null @@ -1,11 +0,0 @@ -# vim: ts=2 -{...}: { - imports = [ - ./hardware - ./networking.nix - - ../../system - ]; - - system.stateVersion = "23.05"; -} diff --git a/hosts/spawn/default.nix b/hosts/spawn/default.nix new file mode 100644 index 00000000..ff50f404 --- /dev/null +++ b/hosts/spawn/default.nix @@ -0,0 +1,11 @@ +# vim: ts=2 +{...}: { + imports = [ + ./hardware + ./networking.nix + + ../../system + ]; + + system.stateVersion = "23.05"; +} diff --git a/hosts/tiamat/configuration.nix b/hosts/tiamat/configuration.nix deleted file mode 100644 index 2a21ffb9..00000000 --- a/hosts/tiamat/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"; -} diff --git a/hosts/tiamat/default.nix b/hosts/tiamat/default.nix new file mode 100644 index 00000000..2a21ffb9 --- /dev/null +++ b/hosts/tiamat/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"; +} -- cgit 1.4.1