Add missing quotes

This commit is contained in:
2025-02-26 20:31:54 +01:00
parent dac0c997a1
commit 745bc7b80f

View File

@@ -41,8 +41,8 @@
}; };
home = { home = {
username = noahk; username = "noahk";
homeDirectory = /home/noahk/; homeDirectory = "/home/noahk";
}; };
# Add stuff for your user as you see fit: # Add stuff for your user as you see fit:
@@ -54,8 +54,8 @@
programs.git.enable = true; programs.git.enable = true;
# Nicely reload system units when changing configs # Nicely reload system units when changing configs
systemd.user.startServices = sd-switch; systemd.user.startServices = "sd-switch";
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
home.stateVersion = 24.11; home.stateVersion = "24.11";
} }