feat: add home-manager

This commit is contained in:
2024-11-27 20:33:16 +01:00
parent 93cdfb5be5
commit f9b964d69a
4 changed files with 45 additions and 2 deletions

View File

@ -0,0 +1,5 @@
{ inputs, config, pkgs, ... }: {
imports = [ inputs.home-manager.nixosModules.home-manager ];
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}