CrOS/modules/users/dragneel/home.nix
2025-03-25 07:39:26 -04:00

20 lines
265 B
Nix

{
osConfig,
config,
inputs,
pkgs,
lib,
...
}: {
imports = [];
home = {
username = "dragneel";
homeDirectory = "/home/dragneel";
stateVersion = "24.05";
};
xdg = {
configHome = "/home/dragneel/.config";
enable = true;
};
}