summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-02-04 02:31:08 +0100
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-02-04 02:31:08 +0100
commit1e936fea03c33586c6416ccb965e4b4c5458010d (patch)
tree60acb46c9f543c2c43571cbcbad99fb55e810b08
parentAdd home manager (diff)
downloadRory-Open-Architecture-1e936fea03c33586c6416ccb965e4b4c5458010d.tar.xz
Fix home manager
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
-rw-r--r--flake.nix4
-rw-r--r--modules/users/Rory.nix2
2 files changed, 6 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 6def9bb..fe84556 100644
--- a/flake.nix
+++ b/flake.nix
@@ -29,6 +29,7 @@
         modules = [
           ./host/Rory-discordbots/configuration.nix
           ./hardware-configuration.nix
+          home-manager.nixosModules.home-manager
         ];
         specialArgs = {
           inherit botcore-v4;
@@ -40,6 +41,7 @@
         modules = [
           ./host/Rory-fosscord/configuration.nix
           ./hardware-configuration.nix
+          home-manager.nixosModules.home-manager
         ];
         specialArgs = {
           inherit discord-client-proxy;
@@ -51,6 +53,7 @@
         modules = [
           ./host/Rory-postgres/configuration.nix
           ./hardware-configuration.nix
+          home-manager.nixosModules.home-manager
         ];
         specialArgs = {
           inherit home-manager;
@@ -61,6 +64,7 @@
         modules = [
           ./host/Rory-devenv/configuration.nix
           ./hardware-configuration.nix
+          home-manager.nixosModules.home-manager
         ];
         specialArgs = {
           inherit home-manager;
diff --git a/modules/users/Rory.nix b/modules/users/Rory.nix
index fb04ef8..babfdcb 100644
--- a/modules/users/Rory.nix
+++ b/modules/users/Rory.nix
@@ -22,6 +22,8 @@
       userName = "TheArcaneBrony";
       userEmail = "myrainbowdash949@gmail.com";
     };
+
+    home.stateVersion = "22.11";
   };
 }