From cf37c5191b1545f4832c9d599cc4c03ded15496f Mon Sep 17 00:00:00 2001 From: Fish <77413091+JulianBarbera@users.noreply.github.com> Date: Sat, 30 Aug 2025 22:14:23 -0700 Subject: [PATCH] Enabled fish --- users/fish/cattop/configuration.nix | 13 ++++++++----- users/fish/cattop/home.nix | 23 +++++++++++++---------- 2 files changed, 21 insertions(+), 15 deletions(-) diff --git a/users/fish/cattop/configuration.nix b/users/fish/cattop/configuration.nix index fa420bb..78af13b 100644 --- a/users/fish/cattop/configuration.nix +++ b/users/fish/cattop/configuration.nix @@ -81,6 +81,7 @@ # Define a user account. Don't forget to set a password with ‘passwd’. users.users.fish = { isNormalUser = true; + shell = pkgs.fish; extraGroups = [ "wheel" # Enable ‘sudo’ for the user. "dialout" # Enable serial access for the user. @@ -95,12 +96,13 @@ }; programs.git = { enable = true; - extraConfig = { - push = { - autoSetupRemote = true; - }; - }; + # extraConfig = { + # push = { + # autoSetupRemote = true; + # }; + # }; }; + programs.firefox.enable = true; programs.neovim.enable = true; #programs.neovim.defaultEditor.enable = true; @@ -114,6 +116,7 @@ # Some programs need SUID wrappers, can be configured further or are # started in user sessions. + programs.fish.enable = true; programs.mtr.enable = true; programs.gnupg.agent = { enable = true; diff --git a/users/fish/cattop/home.nix b/users/fish/cattop/home.nix index b6c57b9..1ca54a9 100644 --- a/users/fish/cattop/home.nix +++ b/users/fish/cattop/home.nix @@ -1,13 +1,4 @@ -{ - inputs, - config, - pkgs, - lib, - userSettings, - systemSettings, - ... -}: - +{ pkgs, ... }: { home = { stateVersion = "23.05"; # Don't change this unless upgrading Home Manager versions @@ -54,6 +45,7 @@ programs = { btop.enable = true; + fish.enable = true; hyfetch.enable = true; gh = { @@ -61,6 +53,17 @@ gitCredentialHelper.enable = true; }; + ghostty = { + enable = true; + shader = "cursor-smear-black.glsl"; + settings = { + theme = "citruszest"; + adjust-cursor-thickness = 1; + background-opacity = 0.9; + background-blur = true; + }; + }; + # Uncomment if you want to use MangoHud system-wide # mangohud.enable = true; };