dotfiles/.config/nixos/hosts/stellapent-cier/users/gildedguy.nix
2025-01-08 22:11:59 +08:00

12 lines
No EOL
189 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [
../../../shared/home-manager/main.nix
];
config = {
home.username = "gildedguy";
home.homeDirectory = "/home/gildedguy";
};
}