nix-config/modules/home-manager/default.nix
2025-05-30 21:10:10 +02:00

20 lines
227 B
Nix

{ lib, config, ... }:
{
home.enable = true;
imports = [
./desktop
./shell
./tmux
./utils
./git.nix
./syncthing.nix
];
home-manager.users.willifan = {
home.stateVersion = "23.11";
};
}