nix-conf/user/default.nix
2024-12-22 23:46:42 -05:00

21 lines
303 B
Nix

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