20 lines
227 B
Nix
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";
|
|
};
|
|
|
|
}
|