minor fix with strings

This commit is contained in:
Sam 2024-05-25 18:45:48 +01:00
parent f3a8dac948
commit efa11640e8
1 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ let
in in
{ {
users.users."${username}" = { users.users.${username} = {
isNormalUser = true; isNormalUser = true;
shell = pkgs.zsh; # default shell shell = pkgs.zsh; # default shell
hashedPasswordFile = sopsHashedPasswordFile; hashedPasswordFile = sopsHashedPasswordFile;
@ -28,7 +28,7 @@ in
environment.persistence."/persist" = { environment.persistence."/persist" = {
hideMounts = true; hideMounts = true;
users."${username}"= { users.${username}= {
directories = [ directories = [
"sync" "sync"
"keep" "keep"
@ -69,7 +69,7 @@ in
home-manager = { home-manager = {
extraSpecialArgs = { inherit inputs; }; extraSpecialArgs = { inherit inputs; };
users = { users = {
"${username}" = import ../../../../home/${hostname}.nix; ${username} = import ../../../../home/${hostname}.nix;
}; };
}; };
} }