mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 12:47:00 +01:00
26 lines
420 B
Nix
26 lines
420 B
Nix
{ currentSystemUser, currentSystemDe, ... }:
|
|
{
|
|
imports = [
|
|
./nvim
|
|
./tmux.nix
|
|
./fish.nix
|
|
./git.nix
|
|
./kitty.nix
|
|
./zoxide.nix
|
|
] ++ (if currentSystemDe == "hyprland" then [
|
|
./hyprland
|
|
] else []
|
|
);
|
|
|
|
home.username = "${currentSystemUser}";
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
BROWSER = "floorp";
|
|
TERMINAL = "kitty";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|