Enabled fish

This commit is contained in:
Fish 2025-08-30 22:14:23 -07:00
parent 108bc9517b
commit cf37c5191b
2 changed files with 21 additions and 15 deletions

View file

@ -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;

View file

@ -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;
};