Adicionado DMS e update de rotina

This commit is contained in:
2026-01-26 17:02:32 -03:00
parent 3bb4c9e33f
commit f0d352a946
14 changed files with 319 additions and 151 deletions
-2
View File
@@ -4,8 +4,6 @@
enable = true;
packages = [
"org.vinegarhq.Sober"
"app/com.dec05eba.gpu_screen_recorder/x86_64/stable"
];
update.auto = {
enable = true;
+5 -2
View File
@@ -24,19 +24,22 @@
nix.package = pkgs.lixPackageSets.latest.lix;
#nix.package = inputs.nixpkgs-master.legacyPackages.${pkgs.system}.lix;
## compilaçao
nix = {
settings = {
cores = 0;
max-jobs = "auto";
auto-optimise-store = true;
extra-sandbox-paths = [ "/var/cache/ccache" ];
## cache kernel
substituters = [ "https://attic.xuyh0120.win/lantian" ];
trusted-public-keys = [ "lantian:EeAUQ+W+6r7EtwnmYjeVwx5kOGEBpjlBfPlzGlTNvHc=" ];
};
};
programs = {
ccache.enable = true;
ccache.cacheDir = "/var/cache/ccache";
};
nix.settings.extra-sandbox-paths = [ "/var/cache/ccache" ];
}