20 lines
378 B
Nix
20 lines
378 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./modules/overlays.nix
|
|
./modules/packages.nix
|
|
./modules/theming.nix
|
|
./modules/xdg.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;
|
|
}
|