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 = {
username = "your-username";
homeDirectory = "/home/your-username";
username = "chloe";
homeDirectory = "/home/chloe";
};
# Add stuff for your user as you see fit:

View File

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