nix/modules/home-manager/flanfam.nix

13 lines
223 B
Nix
Raw Normal View History

2024-01-04 14:45:10 -06:00
{...}: {
home-manager = {
users.flanfam = {
imports = [./common.nix];
home = {
username = "flanfam";
homeDirectory = "/home/flanfam";
stateVersion = "23.11";
};
};
};
}