dotfiles/.config/home-manager/home.nix
2024-12-31 13:24:09 +08:00

17 lines
No EOL
431 B
Nix

{ config, ... }:
{
imports = [
./meta.nix
];
# Home Manager needs a bit of information about you and the paths it should
# manage. Also don't ask how we got here on the roleplaying part on the main
# nixpkgs branch of the dotfiles.
# TODO: Update the username and homeDirectory when switching between host-specific
# branches.
home = {
username = "gildedguy";
homeDirectory = "/home/gildedguy";
};
}