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. # Define a user account. Don't forget to set a password with passwd.
users.users.fish = { users.users.fish = {
isNormalUser = true; isNormalUser = true;
shell = pkgs.fish;
extraGroups = [ extraGroups = [
"wheel" # Enable sudo for the user. "wheel" # Enable sudo for the user.
"dialout" # Enable serial access for the user. "dialout" # Enable serial access for the user.
@ -95,12 +96,13 @@
}; };
programs.git = { programs.git = {
enable = true; enable = true;
extraConfig = { # extraConfig = {
push = { # push = {
autoSetupRemote = true; # autoSetupRemote = true;
}; # };
}; # };
}; };
programs.firefox.enable = true; programs.firefox.enable = true;
programs.neovim.enable = true; programs.neovim.enable = true;
#programs.neovim.defaultEditor.enable = true; #programs.neovim.defaultEditor.enable = true;
@ -114,6 +116,7 @@
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are
# started in user sessions. # started in user sessions.
programs.fish.enable = true;
programs.mtr.enable = true; programs.mtr.enable = true;
programs.gnupg.agent = { programs.gnupg.agent = {
enable = true; enable = true;

View file

@ -1,13 +1,4 @@
{ { pkgs, ... }:
inputs,
config,
pkgs,
lib,
userSettings,
systemSettings,
...
}:
{ {
home = { home = {
stateVersion = "23.05"; # Don't change this unless upgrading Home Manager versions stateVersion = "23.05"; # Don't change this unless upgrading Home Manager versions
@ -54,6 +45,7 @@
programs = { programs = {
btop.enable = true; btop.enable = true;
fish.enable = true;
hyfetch.enable = true; hyfetch.enable = true;
gh = { gh = {
@ -61,6 +53,17 @@
gitCredentialHelper.enable = true; 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 # Uncomment if you want to use MangoHud system-wide
# mangohud.enable = true; # mangohud.enable = true;
}; };