mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-29 03:53:50 -08:00
38 lines
920 B
Nix
38 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
|
|
]);
|
|
}
|