added rest of the nixos modules

This commit is contained in:
2026-09-06 18:17:35 +02:00
parent 054f3f9994
commit 1fae65119b
6 changed files with 116 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
{ inputs, ... }:
{
flake.modules.nixos.homemanager = {
imports = [
inputs.home-manager.nixosModules.default
];
home-manager.useUserPackages = true;
home-manager.useGlobalPkgs = true;
};
}