some things

This commit is contained in:
Chris Cochrun 2024-12-25 00:15:41 -06:00
parent cf27417b40
commit 1b8bee2df6
9 changed files with 252 additions and 25 deletions

View file

@ -43,11 +43,18 @@ in
enableKwallet = true;
};
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
DefaultTimeoutStartSec=10s
'';
systemd = {
oomd = {
enable = true;
enableRootSlice = true;
enableUserSlices = true;
enableSystemSlice = true;
};
extraConfig = ''
DefaultTimeoutStopSec=10s
DefaultTimeoutStartSec=10s
'';
};
fonts.packages = with pkgs; [
nerd-fonts.victor-mono
noto-fonts

View file

@ -180,6 +180,11 @@
pkgs.openjdk
pkgs.languagetool
pkgs.emacs-all-the-icons-fonts
pkgs.tree-sitter-grammars.tree-sitter-css
pkgs.tree-sitter-grammars.tree-sitter-scss
pkgs.tree-sitter-grammars.tree-sitter-rust
pkgs.tree-sitter-grammars.tree-sitter-yaml
pkgs.tree-sitter-grammars.tree-sitter-toml
]));
defaultEditor = true;
};