summaryrefslogtreecommitdiff
path: root/nixos/modules/system/services/default.nix
diff options
context:
space:
mode:
authorseraphim <18ycm9tx@anonaddy.me>2026-08-16 21:55:33 +0700
committerseraphim <18ycm9tx@anonaddy.me>2026-08-16 21:55:33 +0700
commit7dd785b1005aec643004c06eaa7af690b00cb48f (patch)
treebd8700ef4dfb8c0a1315f4eb41784d1d4ba43001 /nixos/modules/system/services/default.nix
parent100094fe8b9398c083fa6351925a00f5b3a9d36a (diff)
.
Diffstat (limited to 'nixos/modules/system/services/default.nix')
-rw-r--r--nixos/modules/system/services/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/nixos/modules/system/services/default.nix b/nixos/modules/system/services/default.nix
deleted file mode 100644
index 571ae3a..0000000
--- a/nixos/modules/system/services/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ ... }:
-
-{
- # File indexer (gvfs) + thumbnailer (tumbler) for the desktop shell.
- services.gvfs.enable = true;
- services.tumbler.enable = true;
- # GNOME Keyring: stores secrets for Chrome/keepassxc seams etc.
- services.gnome.gnome-keyring.enable = true;
- # dconf is the config DB used by GSettings-backed apps (nautilus, etc.).
- programs.dconf.enable = true;
-
- # Keep the journal bounded so it can't fill the root partition.
- services.journald.extraConfig = ''
- SystemMaxUse=50M
- MaxRetentionSec=1month
- '';
-
- # Cap core dumps so a crashing app can't fill the root partition with
- # multi-GB crash dumps (e.g. java/electron segfaults).
- systemd.coredump.settings.Coredump = {
- ProcessSizeMax = "512M";
- Storage = "external";
- };
-}