Reorganize user configuration

This commit is contained in:
SebastianStork 2024-07-21 01:47:42 +02:00
parent 99fee4fddf
commit 14a285ce03
7 changed files with 61 additions and 52 deletions

12
users/home-manager.nix Normal file
View file

@ -0,0 +1,12 @@
{ inputs, self, ... }:
{
imports = [ inputs.home-manager.nixosModules.home-manager ];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
inherit inputs self;
};
};
}