dotfiles/.config/home-manager/home.nix

17 lines
458 B
Nix
Raw Permalink Normal View History

2024-12-31 13:24:09 +08:00
{ config, ... }:
{
imports = [
../nixos/shared/home-manager/main.nix
2024-12-31 13:24:09 +08:00
];
# 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";
};
}