config stuff; increase ulimit NOFILE for yosai

This commit is contained in:
xqtc 2024-11-10 11:47:28 +01:00
parent c9e0dd1148
commit 4a103475dd
Signed by: xqtc
GPG key ID: 2C064D095926D9D1
4 changed files with 94 additions and 32 deletions

View file

@ -144,6 +144,6 @@ config.enable_scroll_bar = false
config.enable_tab_bar = true config.enable_tab_bar = true
config.tab_bar_at_bottom = true config.tab_bar_at_bottom = true
config.hide_mouse_cursor_when_typing = false config.hide_mouse_cursor_when_typing = false
config.enable_wayland = false config.enable_wayland = true
config.warn_about_missing_glyphs = false config.warn_about_missing_glyphs = false
return config return config

View file

@ -21,35 +21,75 @@
colors = { colors = {
alpha = 0.8; alpha = 0.8;
foreground = "cdd6f4"; # catppuccin
background = "1e1e2e"; # foreground = "cdd6f4";
# background = "1e1e2e";
#
# regular0 = "45475a";
# regular1 = "f38ba8";
# regular2 = "a6e3a1";
# regular3 = "f9e2af";
# regular4 = "89b4fa";
# regular5 = "f5c2e7";
# regular6 = "94e2d5";
# regular7 = "bac2de";
#
# bright0 = "585b70";
# bright1 = "f38ba8";
# bright2 = "a6e3a1";
# bright3 = "f9e2af";
# bright4 = "89b4fa";
# bright5 = "f5c2e7";
# bright6 = "94e2d5";
# bright7 = "a6adc8";
#
# selection-foreground = "cdd6f4";
# selection-background = "414356";
#
# search-box-no-match = "11111b f38ba8";
# search-box-match = "cdd6f4 313244";
#
# jump-labels = "11111b fab387";
# urls = "89b4fa";
# Base16 Apathy - foot color config
regular0 = "45475a"; background = "031a16";
regular1 = "f38ba8"; foreground = "81b5ac";
regular2 = "a6e3a1";
regular3 = "f9e2af";
regular4 = "89b4fa";
regular5 = "f5c2e7";
regular6 = "94e2d5";
regular7 = "bac2de";
bright0 = "585b70"; # normal
bright1 = "f38ba8"; regular0 = "031a16";
bright2 = "a6e3a1"; regular1 = "3e9688";
bright3 = "f9e2af"; regular2 = "883e96";
bright4 = "89b4fa"; regular3 = "3e4c96";
bright5 = "f5c2e7"; regular4 = "96883e";
bright6 = "94e2d5"; regular5 = "4c963e";
bright7 = "a6adc8"; regular6 = "963e4c";
regular7 = "81b5ac";
selection-foreground = "cdd6f4"; # bright
selection-background = "414356"; bright0 = "2b685e";
bright1 = "3e7996";
bright2 = "0b342d";
bright3 = "184e45";
bright4 = "5f9c92";
bright5 = "a7cec8";
bright6 = "3e965b";
bright7 = "d2e7e4";
search-box-no-match = "11111b f38ba8"; # extended
search-box-match = "cdd6f4 313244"; "16" = "3e7996";
"17" = "3e965b";
"18" = "0b342d";
"19" = "184e45";
"20" = "5f9c92";
"21" = "a7cec8";
jump-labels = "11111b fab387"; # misc
urls = "89b4fa"; selection-background = "81b5ac";
selection-foreground = "031a16";
urls = "5f9c92";
jump-labels = "031a16 3e4c96";
scrollback-indicator = "031a16 5f9c92";
}; };
}; };
}; };

View file

@ -145,7 +145,7 @@
enable = true; enable = true;
settings.context = "buffers"; settings.context = "buffers";
}; };
neocord.enable = true; neocord.enable = false;
rustaceanvim = { rustaceanvim = {
enable = false; enable = false;
settings = { settings = {

View file

@ -30,6 +30,15 @@
}; };
}; };
security.pam.loginLimits = [
{
domain = "*";
type = "soft";
item = "nofile";
value = "4096";
}
];
nix.settings.experimental-features = ["nix-command" "flakes"]; nix.settings.experimental-features = ["nix-command" "flakes"];
programs.dconf.enable = true; programs.dconf.enable = true;
@ -87,9 +96,8 @@
users.users.xqtc = { users.users.xqtc = {
isNormalUser = true; isNormalUser = true;
extraGroups = ["wheel"]; # Enable sudo for the user. extraGroups = ["wheel"]; # Enable sudo for the user.
shell = pkgs.zsh;
packages = with pkgs; [ packages = with pkgs; [
firefox
neovim
git git
foot foot
tree tree
@ -98,10 +106,24 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
# environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget wget
# ]; gcc13
cargo
cargo-generate
sway
glib
#swaylock
swaylock-effects
tofi
waybar
wl-clipboard
wdisplays
#qemu_full
#surrealdb
zathura
];
# 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.