refactor: move nested home to top level
This commit is contained in:
parent
6cf3070f8c
commit
fb2238e26f
|
@ -87,7 +87,7 @@
|
||||||
./system
|
./system
|
||||||
{
|
{
|
||||||
home-manager.extraSpecialArgs = specialArgs;
|
home-manager.extraSpecialArgs = specialArgs;
|
||||||
home-manager.users.tigor = import ./home/tigor;
|
home-manager.users.tigor = import ./home;
|
||||||
}
|
}
|
||||||
] ++ commonModules;
|
] ++ commonModules;
|
||||||
specialArgs = specialArgs;
|
specialArgs = specialArgs;
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
./system
|
./system
|
||||||
{
|
{
|
||||||
home-manager.extraSpecialArgs = specialArgs;
|
home-manager.extraSpecialArgs = specialArgs;
|
||||||
home-manager.users.tigor = import ./home/tigor;
|
home-manager.users.tigor = import ./home;
|
||||||
}
|
}
|
||||||
] ++ commonModules;
|
] ++ commonModules;
|
||||||
specialArgs = specialArgs;
|
specialArgs = specialArgs;
|
||||||
|
@ -121,7 +121,7 @@
|
||||||
./system
|
./system
|
||||||
{
|
{
|
||||||
home-manager.extraSpecialArgs = specialArgs;
|
home-manager.extraSpecialArgs = specialArgs;
|
||||||
home-manager.users.tigor = import ./home/tigor;
|
home-manager.users.tigor = import ./home;
|
||||||
}
|
}
|
||||||
] ++ commonModules;
|
] ++ commonModules;
|
||||||
specialArgs = specialArgs;
|
specialArgs = specialArgs;
|
||||||
|
|
|
@ -8,7 +8,7 @@ in
|
||||||
profile-path
|
profile-path
|
||||||
|
|
||||||
./programs
|
./programs
|
||||||
../modules
|
./modules
|
||||||
|
|
||||||
./config/wezterm
|
./config/wezterm
|
||||||
./config/nvim
|
./config/nvim
|
|
@ -1,7 +1,7 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
sops = {
|
sops = {
|
||||||
defaultSopsFile = ../../secrets/secrets.yaml;
|
defaultSopsFile = ../secrets/secrets.yaml;
|
||||||
defaultSopsFormat = "yaml";
|
defaultSopsFormat = "yaml";
|
||||||
age.keyFile = "/home/${config.home.username}/.config/sops/age/keys.txt";
|
age.keyFile = "/home/${config.home.username}/.config/sops/age/keys.txt";
|
||||||
|
|
Loading…
Reference in a new issue