Commit 1626dc1

HPCesia <me@hpcesia.com>
2026-07-30 09:18:45
Add Hjem
1 parent 5a0b022
Changed files (6)
modules/core/misc.nix
@@ -0,0 +1,7 @@
+{
+  den.aspects.core.misc = {
+    hjem = {
+      clobberFiles = true;
+    };
+  };
+}
modules/flake/gen-flake.nix
@@ -10,6 +10,11 @@
       # Basic
       nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
 
+      hjem = {
+        url = "github:feel-co/hjem";
+        inputs.nixpkgs.follows = "nixpkgs";
+      };
+
       home-manager = {
         url = "github:nix-community/home-manager";
         inputs.nixpkgs.follows = "nixpkgs";
modules/hosts/kevin/default.nix
@@ -17,6 +17,7 @@
     ];
     classes = [
       "user"
+      "hjem"
       "homeManager"
     ];
   };
modules/roles/default.nix
@@ -20,6 +20,7 @@
       core.editor
       core.impermanence
       core.localization
+      core.misc
       core.nameservers
       core.nftables
       core.openssh
flake.lock
@@ -213,6 +213,26 @@
         "type": "github"
       }
     },
+    "hjem": {
+      "inputs": {
+        "nixpkgs": [
+          "nixpkgs"
+        ]
+      },
+      "locked": {
+        "lastModified": 1785346857,
+        "narHash": "sha256-7pu4iFZMGMdOYFaV+ezdF6XKmcdGOMGzeYkw69nXfe0=",
+        "owner": "feel-co",
+        "repo": "hjem",
+        "rev": "a0bfffc389b1cf1742ed75bef361395146c3f966",
+        "type": "github"
+      },
+      "original": {
+        "owner": "feel-co",
+        "repo": "hjem",
+        "type": "github"
+      }
+    },
     "home-manager": {
       "inputs": {
         "nixpkgs": [
@@ -443,6 +463,7 @@
         "flake-compat": "flake-compat",
         "flake-file": "flake-file",
         "flake-parts": "flake-parts",
+        "hjem": "hjem",
         "home-manager": "home-manager",
         "impermanence": "impermanence",
         "import-tree": "import-tree",
flake.nix
@@ -28,6 +28,10 @@
       url = "github:hercules-ci/flake-parts";
       inputs.nixpkgs-lib.follows = "nixpkgs";
     };
+    hjem = {
+      url = "github:feel-co/hjem";
+      inputs.nixpkgs.follows = "nixpkgs";
+    };
     home-manager = {
       url = "github:nix-community/home-manager";
       inputs.nixpkgs.follows = "nixpkgs";