Fix profiles
This commit is contained in:
parent
eaedcbd5d6
commit
a27e2495d3
|
|
@ -43,6 +43,7 @@
|
|||
specialArgs = {
|
||||
inherit inputs;
|
||||
inherit host;
|
||||
inherit profile;
|
||||
inherit username;
|
||||
};
|
||||
modules = [
|
||||
|
|
@ -55,6 +56,7 @@
|
|||
specialArgs = {
|
||||
inherit inputs;
|
||||
inherit host;
|
||||
inherit profile;
|
||||
inherit username;
|
||||
};
|
||||
modules = [
|
||||
|
|
@ -68,11 +70,11 @@
|
|||
homeConfigurations.${username} = home-manager.lib.homeManagerConfiguration {
|
||||
extraSpecialArgs = {
|
||||
inherit inputs;
|
||||
inherit profile;
|
||||
inherit username;
|
||||
};
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
modules = [
|
||||
./profiles/${profile}
|
||||
./homes/${username}/home.nix
|
||||
stylix.homeModules.stylix
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,10 +1,12 @@
|
|||
{
|
||||
profile,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
../../modules/homes
|
||||
../../modules/options
|
||||
../../profiles/${profile}
|
||||
];
|
||||
|
||||
modules.zsh.enable = true;
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
{
|
||||
profile,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
../../profiles/desktop
|
||||
../../profiles/${profile}
|
||||
../../profiles/vm
|
||||
../../modules/core
|
||||
../../modules/options
|
||||
|
|
|
|||
Loading…
Reference in New Issue