first commit

This commit is contained in:
Senior Matt
2026-03-22 21:30:03 +05:00
commit 46135a1bc4
22 changed files with 2037 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{ inputs, self, ... }:
{
flake.nixosModules.home-manager = {
imports = [
inputs.home-manager.nixosModules.home-manager
];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit inputs self; };
users.matthew = {
home.stateVersion = "25.11";
programs.home-manager.enable = true;
};
};
};
}