dotfiles/.config/home-manager/home.nix
Andrei Jiroh Halili b5c1dcf6f2 Point to local copy of nixops-config:shared/home-manager/main.nix
Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
2025-01-09 00:20:42 +08:00

17 lines
No EOL
458 B
Nix

{ config, ... }:
{
imports = [
../nixos/shared/home-manager/main.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";
};
}