mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 04:38:06 +01:00
39 lines
635 B
Nix
39 lines
635 B
Nix
{ currentSystemUser, currentSystemDe, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./fish.nix
|
|
./git.nix
|
|
./gnome.nix
|
|
./kitty.nix
|
|
./mangohud.nix
|
|
./tmux.nix
|
|
./zoxide.nix
|
|
] ++ (if currentSystemDe == "hyprland" then [
|
|
./hyprland
|
|
] else []
|
|
);
|
|
|
|
home = {
|
|
username = "${currentSystemUser}";
|
|
sessionVariables = {
|
|
EDITOR = "nvim";
|
|
BROWSER = "firefox";
|
|
TERMINAL = "gnome-boxes";
|
|
};
|
|
packages = [
|
|
pkgs.dconf
|
|
];
|
|
pointerCursor = {
|
|
enable = false;
|
|
package = pkgs.bibata-cursors;
|
|
name = "Bibata-Modern-Classic";
|
|
};
|
|
};
|
|
|
|
dconf.enable = true;
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|