14 lines
239 B
Nix
14 lines
239 B
Nix
{ ... }: {
|
|
home-manager.users."lilith" = {
|
|
imports = [
|
|
./gpg.nix
|
|
];
|
|
home.username = "lilith";
|
|
home.stateVersion = "24.11";
|
|
};
|
|
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
};
|
|
}
|