mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
config: update comments and module descriptions
This commit is contained in:
parent
d8b28ce617
commit
9a07eedb14
@ -434,11 +434,17 @@
|
|||||||
formatter =
|
formatter =
|
||||||
forAllSystems (system: nixpkgs.legacyPackages.${system}.treefmt);
|
forAllSystems (system: nixpkgs.legacyPackages.${system}.treefmt);
|
||||||
|
|
||||||
# nixops-lite... in here!?! We got it all, son!
|
# nixops-lite (that is much more powerful than nixops itself)... in
|
||||||
|
# here!?! We got it all, son!
|
||||||
#
|
#
|
||||||
# Take note for automatically imported nodes, various options should be
|
# Take note for automatically imported nodes, various options should be
|
||||||
# overridden in the deploy utility considering that most have only
|
# overridden in the deploy utility considering that most have only
|
||||||
# certain values and likely not work if run with the intended value.
|
# certain values and likely not work if run with the intended value.
|
||||||
|
#
|
||||||
|
# Also, don't forget to always clean your shell history when overriding
|
||||||
|
# sensitive info such as the hostname and such. A helpful tip would be
|
||||||
|
# ignoring the shell entry by simply prefixing it with a space which most
|
||||||
|
# command-line shells have support for (e.g., Bash, zsh, fish).
|
||||||
deploy.nodes = let
|
deploy.nodes = let
|
||||||
importNodes = prefix: systems:
|
importNodes = prefix: systems:
|
||||||
lib'.mapAttrs'
|
lib'.mapAttrs'
|
||||||
|
@ -221,7 +221,8 @@ in
|
|||||||
WEB_VAULT_ENABLED = true;
|
WEB_VAULT_ENABLED = true;
|
||||||
WEB_VAULT_FOLDER = "${pkgs.vaultwarden-vault}/share/vaultwarden/vault";
|
WEB_VAULT_FOLDER = "${pkgs.vaultwarden-vault}/share/vaultwarden/vault";
|
||||||
|
|
||||||
# Configuring the database.
|
# Configuring the database. Take note it is required to create a password
|
||||||
|
# for the user.
|
||||||
DATABASE_URL = "postgresql://${vaultwardenUser}:thisismadnessbutsomeonewilljustseethisanyways32342whaaaaaatthebloooooodyhell49@localhost/${vaultwardenDbName}";
|
DATABASE_URL = "postgresql://${vaultwardenUser}:thisismadnessbutsomeonewilljustseethisanyways32342whaaaaaatthebloooooodyhell49@localhost/${vaultwardenDbName}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -7,13 +7,13 @@ let cfg = config.profiles.desktop;
|
|||||||
in {
|
in {
|
||||||
options.profiles.desktop = {
|
options.profiles.desktop = {
|
||||||
enable =
|
enable =
|
||||||
lib.mkEnableOption "all desktop-related services and default programs";
|
lib.mkEnableOption "basic desktop-related services and default programs";
|
||||||
audio.enable =
|
audio.enable =
|
||||||
lib.mkEnableOption "all desktop audio-related services such as Pipewire";
|
lib.mkEnableOption "desktop audio-related configurations";
|
||||||
fonts.enable = lib.mkEnableOption "font-related configuration";
|
fonts.enable = lib.mkEnableOption "font-related configuration";
|
||||||
hardware.enable =
|
hardware.enable =
|
||||||
lib.mkEnableOption "the common hardware-related configuration";
|
lib.mkEnableOption "the common hardware-related configuration";
|
||||||
cleanup.enable = lib.mkEnableOption "activation of cleanup services";
|
cleanup.enable = lib.mkEnableOption "activation of various cleanup services";
|
||||||
autoUpgrade.enable = lib.mkEnableOption "auto-upgrade service with this system";
|
autoUpgrade.enable = lib.mkEnableOption "auto-upgrade service with this system";
|
||||||
wine = {
|
wine = {
|
||||||
enable = lib.mkEnableOption "Wine and Wine-related tools";
|
enable = lib.mkEnableOption "Wine and Wine-related tools";
|
||||||
|
Loading…
Reference in New Issue
Block a user