nix/modules/home-manager/flanfam.nix
2024-01-04 14:45:10 -06:00

13 lines
223 B
Nix

{...}: {
home-manager = {
users.flanfam = {
imports = [./common.nix];
home = {
username = "flanfam";
homeDirectory = "/home/flanfam";
stateVersion = "23.11";
};
};
};
}