nixconf/home-manager/home.nix
Gabriella Bere ff65efd702 switched to fish
oh-my-fish/theme-agnoster has issues on nix so i forked it and am
working on fixing it, for now i have it in a state where the annoying
thing doesnt happen, and this means i have the same functionality

actually better because the autocomplete and syntax highlighting is much
nicer

fish ftw
2025-06-04 16:59:43 +01:00

68 lines
1.4 KiB
Nix

{
pkgs,
lib,
...
}:
{
home.username = "blue";
home.homeDirectory = "/home/blue";
imports = [
./hyprland.nix
./waybar.nix
./swaync.nix
./hyprlock.nix
./fish.nix
./eza.nix
./nvf.nix
./nextcloud.nix
./git.nix
./stylix.nix
./direnv.nix
./firefox.nix
./zellij.nix
./obs-studio.nix
./packages.nix
];
home.stateVersion = "24.05";
services.gnome-keyring.enable = true; # used for nextcloud-client
home.sessionVariables = {
DEFAULT_BROWSER = "${lib.getExe pkgs.floorp}";
# Allow XWayland apps to not be weird after turning off xwayland scaling in hyprland.conf
GDK_SCALE = 1;
XCURSOR_SIZE = 24;
# Set default editor
EDITOR = "nvim";
NIXOS_OZONE_WL = 1;
LD_LIBRARY_PATH = "${pkgs.libGL}/lib:${pkgs.gtk3}/lib:${pkgs.glib.out}/lib:${pkgs.xorg.libXtst}/lib";
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
programs.tmux.enable = true;
programs.zoxide = {
enable = true;
enableZshIntegration = true;
};
programs.btop.enable = true;
programs.btop.package = pkgs.stable.btop-rocm;
# Add support for bluetooth headset media controls
services.mpris-proxy.enable = true;
programs.alacritty = {
enable = true;
package = pkgs.alacritty;
settings = {
window.dimensions = {
lines = 3;
columns = 200;
};
};
};
}