aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 16326a5..a781e59 100644
--- a/flake.nix
+++ b/flake.nix
@@ -89,6 +89,18 @@
89 imports = [ ./hosts/mantis/configuration.nix ]; 89 imports = [ ./hosts/mantis/configuration.nix ];
90 _module.args.self = self; 90 _module.args.self = self;
91 } 91 }
92 home-manager.nixosModules.home-manager
93 {
94 home-manager.useGlobalPkgs = true;
95 home-manager.useUserPackages = true;
96 home-manager.users.op = {
97 imports = [ ./hosts/mantis/home.nix ];
98 _module.args.self = self;
99 _module.args.inputs = inputs;
100 _module.args.theme = import ./theme;
101 _module.args.font = import ./font.nix;
102 };
103 }
92 ]; 104 ];
93 }; 105 };
94 106