19 lines
336 B
Nix
19 lines
336 B
Nix
{
|
|
inputs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
extraSpecialArgs = {inherit inputs;};
|
|
backupFileExtension = "backup";
|
|
users.tulg = {
|
|
imports = [
|
|
../../modules/home-manager/home.nix
|
|
inputs.stylix.homeModules.stylix
|
|
];
|
|
};
|
|
};
|
|
}
|