Regenerated
This commit is contained in:
+391
-384
File diff suppressed because it is too large
Load Diff
+11
-4
@@ -1917,14 +1917,21 @@ This sets the networking.
|
|||||||
** =generated/modules/traveldroid/system/nix.nix=
|
** =generated/modules/traveldroid/system/nix.nix=
|
||||||
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/nix.nix :noweb yes :mkdirp yes :eval never
|
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/nix.nix :noweb yes :mkdirp yes :eval never
|
||||||
{ lib, config, ... }:
|
{ lib, config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
experimental-features = [ "nix-command" "flakes" ];
|
experimental-features = [ "nix-command" "flakes" ];
|
||||||
download-buffer-size = 536870912; # 512 MB
|
download-buffer-size = 536870912; # 512 MB
|
||||||
cores = 2;
|
cores = 8;
|
||||||
max-jobs = 1;
|
max-jobs = "auto";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nix.gc = {
|
||||||
|
automatic = true;
|
||||||
|
dates = "weekly";
|
||||||
|
options = "--delete-older-than 30d";
|
||||||
|
};
|
||||||
|
|
||||||
|
boot.loader.systemd-boot.configurationLimit = 3;
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
@@ -4137,7 +4144,7 @@ format = " in $duration "
|
|||||||
style = "bg:lavender"
|
style = "bg:lavender"
|
||||||
disabled = false
|
disabled = false
|
||||||
show_notifications = true
|
show_notifications = true
|
||||||
min_time_to_notify = 100000
|
min_time_to_notify = 60000
|
||||||
|
|
||||||
[palettes.catppuccin_mocha]
|
[palettes.catppuccin_mocha]
|
||||||
rosewater = "#f5e0dc"
|
rosewater = "#f5e0dc"
|
||||||
|
|||||||
@@ -165,7 +165,7 @@ format = " in $duration "
|
|||||||
style = "bg:lavender"
|
style = "bg:lavender"
|
||||||
disabled = false
|
disabled = false
|
||||||
show_notifications = true
|
show_notifications = true
|
||||||
min_time_to_notify = 100000
|
min_time_to_notify = 60000
|
||||||
|
|
||||||
[palettes.catppuccin_mocha]
|
[palettes.catppuccin_mocha]
|
||||||
rosewater = "#f5e0dc"
|
rosewater = "#f5e0dc"
|
||||||
|
|||||||
@@ -1,11 +1,18 @@
|
|||||||
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
||||||
{ lib, config, ... }:
|
{ lib, config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
experimental-features = [ "nix-command" "flakes" ];
|
experimental-features = [ "nix-command" "flakes" ];
|
||||||
download-buffer-size = 536870912; # 512 MB
|
download-buffer-size = 536870912; # 512 MB
|
||||||
cores = 2;
|
cores = 8;
|
||||||
max-jobs = 1;
|
max-jobs = "auto";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nix.gc = {
|
||||||
|
automatic = true;
|
||||||
|
dates = "weekly";
|
||||||
|
options = "--delete-older-than 30d";
|
||||||
|
};
|
||||||
|
|
||||||
|
boot.loader.systemd-boot.configurationLimit = 3;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user