Fixed username in home-manager config

This commit is contained in:
Chloe Hawthorne
2024-12-27 14:41:28 +11:00
parent c5b252cd10
commit 843f5305a4
2 changed files with 4 additions and 5 deletions

View File

@@ -45,10 +45,9 @@
}; };
}; };
# TODO: Set your username
home = { home = {
username = "your-username"; username = "chloe";
homeDirectory = "/home/your-username"; homeDirectory = "/home/chloe";
}; };
# Add stuff for your user as you see fit: # Add stuff for your user as you see fit:

View File

@@ -1,5 +1,5 @@
# List packages installed in system profile. To search, run: { pkgs, ... } : {
# $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
home-manager zsh refind python314 unzip zip git gnumake apostrophe gnome-tweaks gnomeExtensions.user-themes dissent home-manager zsh refind python314 unzip zip git gnumake apostrophe gnome-tweaks gnomeExtensions.user-themes dissent
]; ];
}