formatting

This commit is contained in:
Osman Faruk Bayram 2025-11-06 15:06:05 +03:00
parent a2ba53b574
commit 68572a1362
6 changed files with 9 additions and 7 deletions

View file

@ -72,7 +72,7 @@
''; '';
# server is in germany # server is in germany
time.timeZone = "Europe/Berlin"; # or "Europe/Amsterdam" time.timeZone = "Europe/Berlin"; # or "Europe/Amsterdam"
# Network configuration # Network configuration
networking = { networking = {

View file

@ -50,7 +50,7 @@
name = uuid; name = uuid;
value = { value = {
install_url = "https://addons.mozilla.org/en-US/firefox/downloads/latest/${shortId}/latest.xpi"; install_url = "https://addons.mozilla.org/en-US/firefox/downloads/latest/${shortId}/latest.xpi";
installation_mode = "normal_installed"; # i dont want to get the packages from a non-open source source installation_mode = "normal_installed"; # i dont want to get the packages from a non-open source source
}; };
}; };
in in

View file

@ -84,6 +84,7 @@
} }
]; ];
}; };
}) }
)
]; ];
} }

View file

@ -9,7 +9,8 @@
# Allow unfree packages # Allow unfree packages
nixpkgs = { nixpkgs = {
config = { config = {
allowUnfreePredicate = pkg: allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [ builtins.elem (lib.getName pkg) [
"vscode" "vscode"
"discord" "discord"
@ -36,7 +37,7 @@
"nvidia-settings" "nvidia-settings"
# blender with cuda is not foss?!? # blender with cuda is not foss?!?
"blender" "blender"
]; ];
allowAliases = false; allowAliases = false;
}; };
}; };