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