aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-04-20 16:47:40 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2026-04-20 16:47:40 +0200
commit3c3031e9b4bc69d7b8c1ea9dc50defa80a79aba6 (patch)
tree52db2654c10db37ecf6d47189a53c201084054d3
parent44591c4124e2a6c3de1fbaf3a8c95114fc16a8ee (diff)
update flake file
-rw-r--r--flake.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 0ac3cf0..1ecb544 100644
--- a/flake.nix
+++ b/flake.nix
@@ -33,5 +33,11 @@
devShells.x86_64-linux.default = pkgs.mkShell {
packages = inputs;
};
+
+ nixosModules.default = { pkgs, ... }: {
+ config = {
+ environment.systemPackages = [ self.packages.${pkgs.system}.default ];
+ };
+ };
};
}