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

View file

@ -9,6 +9,7 @@
./emulation.nix
./fonts.nix
./graphical-interface.nix
./home.nix
./i18n.nix
./minegrub.nix
./nix-settings.nix

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";
};
}