nix-conf/user/default.nix

19 lines
274 B
Nix

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