centralize home manager

This commit is contained in:
Osman Faruk Bayram 2025-04-24 21:59:07 +03:00
parent ea887fb764
commit 88f7cd6ec0
7 changed files with 9 additions and 24 deletions

8
modules/home.nix Normal file
View file

@ -0,0 +1,8 @@
{config, pkgs, ...}:{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.osbm = import ../home/home.nix {
inherit config pkgs;
backupFileExtension = "hmbak";
};
}