mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
21 lines
326 B
Nix
21 lines
326 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}";
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|