CrOS/modules/home/crow.nix
2024-09-17 10:08:46 -04:00

17 lines
327 B
Nix

{pkgs, ...}: let
username = "crow";
homeDirectory = "/home/${username}";
configHome = "${homeDirectory}/.config";
in {
home = {
inherit username homeDirectory;
stateVersion = system.stateVersion;
};
xdg = {
inherit configHome;
enable = true;
}
programs = {};
}