Browse Source

feat(odin): home-manager configuration

Zander Hawke 9 tháng trước cách đây
mục cha
commit
2e8404d58b
2 tập tin đã thay đổi với 12 bổ sung0 xóa
  1. 5 0
      flake.nix
  2. 7 0
      home/odin.nix

+ 5 - 0
flake.nix

@@ -47,6 +47,11 @@
         system = "aarch64-linux";
         modules = [ ./home/fedora.nix ];
       };
+
+      "thomas@odin" = lib.mkHome {
+        system = "x86_64-linux";
+        modules = [ ./home/odin.nix ];
+      };
     };
 
     nixosConfigurations = {

+ 7 - 0
home/odin.nix

@@ -0,0 +1,7 @@
+{
+  imports = [
+    ./features/core.nix
+    ./features/cli
+    ./features/nvim
+  ];
+}