mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-28 19:53:49 -08:00
39 lines
920 B
Nix
39 lines
920 B
Nix
|
{
|
||
|
inputs,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
./configuration.nix
|
||
|
../../modules/linux/core
|
||
|
../../modules/linux/stylix
|
||
|
../../overlays
|
||
|
../../modules/linux/wsl
|
||
|
{
|
||
|
home-manager.useGlobalPkgs = true;
|
||
|
home-manager.useUserPackages = true;
|
||
|
home-manager.backupFileExtension = "backup";
|
||
|
home-manager.extraSpecialArgs = {
|
||
|
inherit inputs;
|
||
|
};
|
||
|
home-manager.users.youwen = {
|
||
|
imports =
|
||
|
[
|
||
|
./home-manager-extras
|
||
|
../../users/youwen/common
|
||
|
../../users/youwen/linux/theming
|
||
|
../../users/youwen/linux/home.nix
|
||
|
../../users/youwen/common/fastfetch
|
||
|
]
|
||
|
++ (with inputs; [
|
||
|
nix-index-database.hmModules.nix-index
|
||
|
]);
|
||
|
};
|
||
|
}
|
||
|
]
|
||
|
++ (with inputs; [
|
||
|
home-manager.nixosModules.home-manager
|
||
|
]);
|
||
|
}
|