nix-conf/user/default.nix

23 lines
343 B
Nix
Raw Normal View History

2024-12-20 21:13:24 -05:00
{
config,
lib,
...
}: {
2024-10-18 15:11:33 -04:00
imports = [
2024-12-31 21:25:02 -05:00
./activitywatch.nix
2024-11-29 01:48:44 -05:00
./autostart.nix
2024-10-18 15:11:33 -04:00
./bin
2024-10-30 18:29:00 -04:00
./config
2024-12-22 23:46:42 -05:00
./fhs.nix
2024-10-31 16:15:52 -04:00
./options.nix
2024-12-20 21:13:24 -05:00
./packages.nix
2024-12-22 23:46:42 -05:00
./prog.nix
2024-10-18 15:11:33 -04:00
./share
./theme.nix
./xdg.nix
2025-01-01 01:04:23 -05:00
../overlays
2024-10-18 15:11:33 -04:00
];
2024-12-20 21:13:24 -05:00
home.homeDirectory = lib.mkDefault "/home/${config.home.username}";
home.stateVersion = "24.05";
2024-10-18 15:11:33 -04:00
}