mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
24 lines
375 B
Nix
24 lines
375 B
Nix
{ currentSystemUser, currentSystemDe, ... }:
|
|
{
|
|
imports = [
|
|
./nvim
|
|
./tmux.nix
|
|
./fish.nix
|
|
./git.nix
|
|
./kitty.nix
|
|
./zoxide.nix
|
|
] ++ (if currentSystemDe == "hyprland" then [
|
|
./hyprland.nix
|
|
./wofi.nix
|
|
./hyprlock.nix
|
|
./waybar.nix
|
|
] else []
|
|
);
|
|
|
|
home.username = "${currentSystemUser}";
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|