mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
17 lines
327 B
Nix
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 = {};
|
|
}
|