From 54cbedb21cafae42b6e04f227a197cbf32f1ebd6 Mon Sep 17 00:00:00 2001 From: OCbwoy3 Date: Sun, 22 Dec 2024 23:37:13 +0200 Subject: [PATCH] use legcord instead of vesktop --- hosts/default/configuration.nix | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 8d0276e..0eee8de 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -67,7 +67,8 @@ main-user.packages = with pkgs; [ warp-terminal prismlauncher - vesktop + # vesktop + legcord kdenlive libsForQt5.qt5ct libsForQt5.lightly @@ -77,6 +78,21 @@ # (pkgs.callPackage ./apps/tuxstrap.nix {}) ]; + fileSystems = { + "/".options = [ "compress=zstd" ]; + "/home".options = [ "compress=zstd" ]; + "/nix".options = [ "compress=zstd" "noatime" ]; + "/swap".options = [ "noatime "]; + }; + + swapDevices = [ { device = "/swap/swapfile"; } ]; + + services.btrfs.autoScrub = { + enable = true; + interval = "monthly"; + fileSystems = [ "/" ]; + }; + # CHANGE YOUR NAME IN HOME MANAGER! main-user.userName = "ocbwoy3";