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