mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-02-23 13:42:05 +00:00
17 lines
431 B
Nix
17 lines
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";
|
||
|
};
|
||
|
}
|