add fish to cnixpad

This commit is contained in:
2025-01-02 20:38:08 +01:00
parent eb6727e458
commit f651438ca7
4 changed files with 7 additions and 5 deletions

View File

@@ -8,7 +8,7 @@
in { in {
users.users.cnst = { users.users.cnst = {
isNormalUser = true; isNormalUser = true;
shell = pkgs.zsh; shell = pkgs.fish;
# openssh.authorizedKeys.keys = []; # openssh.authorizedKeys.keys = [];
extraGroups = ifTheyExist [ extraGroups = ifTheyExist [
"wheel" "wheel"

View File

@@ -60,6 +60,9 @@
corectrl = { corectrl = {
enable = false; enable = false;
}; };
fish = {
enable = true;
};
gamemode = { gamemode = {
enable = false; enable = false;
optimizeGpu = { optimizeGpu = {
@@ -125,7 +128,7 @@
enable = true; enable = true;
}; };
zsh = { zsh = {
enable = true; enable = false;
}; };
}; };
services = { services = {

View File

@@ -14,14 +14,14 @@ in {
programs.rofi = { programs.rofi = {
enable = true; enable = true;
package = pkgs.rofi-wayland; package = pkgs.rofi-wayland;
theme = ./style.rasi;
font = "Input Mono Narrow Light 12";
extraConfig = { extraConfig = {
font = "Input Mono Narrow Light 12";
show-icons = true; show-icons = true;
drun-display-format = "{name}"; drun-display-format = "{name}";
disable-history = false; disable-history = false;
sidebar-mode = false; sidebar-mode = false;
}; };
theme = ./style.rasi;
}; };
}; };
} }

View File

@@ -1,6 +1,5 @@
{ {
config, config,
osConfig,
lib, lib,
pkgs, pkgs,
inputs, inputs,