소스 검색

feat(odin): home-manager configuration

Zander Hawke 9 달 전
부모
커밋
2e8404d58b
2개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  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
+  ];
+}