nix-conf/user/default.nix
2025-01-01 01:04:23 -05:00

23 lines
343 B
Nix

{
config,
lib,
...
}: {
imports = [
./activitywatch.nix
./autostart.nix
./bin
./config
./fhs.nix
./options.nix
./packages.nix
./prog.nix
./share
./theme.nix
./xdg.nix
../overlays
];
home.homeDirectory = lib.mkDefault "/home/${config.home.username}";
home.stateVersion = "24.05";
}