19 lines
356 B
Nix
19 lines
356 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./modules/overlays.nix
|
|
./modules/packages.nix
|
|
./modules/theming.nix
|
|
./modules/programs/git.nix
|
|
./modules/programs/gpg-agent.nix
|
|
./modules/programs/obs-studio.nix
|
|
];
|
|
|
|
home.username = "lusia";
|
|
home.homeDirectory = "/home/lusia";
|
|
home.stateVersion = "24.11";
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|