diff --git a/Modules/System/Application/Special-Applications/gparted.nix b/Modules/System/Application/Special-Applications/gparted.nix index 6fce3e0..f2c3af9 100644 --- a/Modules/System/Application/Special-Applications/gparted.nix +++ b/Modules/System/Application/Special-Applications/gparted.nix @@ -6,9 +6,12 @@ # Options: # - enable -> Enable GParted system module # -{ config, lib, pkgs, ... }: - -let +{ + config, + lib, + pkgs, + ... +}: let cfg = config.nyx-module.system.gparted; in { options.nyx-module.system.gparted = { diff --git a/Modules/System/Application/Special-Applications/gpg.nix b/Modules/System/Application/Special-Applications/gpg.nix index dc45e6e..c3cd109 100644 --- a/Modules/System/Application/Special-Applications/gpg.nix +++ b/Modules/System/Application/Special-Applications/gpg.nix @@ -11,9 +11,12 @@ # - enableSeahorse -> Enable Seahorse (GUI key manager) # - pinentry.package -> Pinentry package (default: pkgs.pinentry-all) # -{ config, lib, pkgs, ... }: - -let +{ + config, + lib, + pkgs, + ... +}: let cfg = config.nyx-module.system.gpg; in { options.nyx-module.system.gpg = { @@ -23,7 +26,7 @@ in { type = lib.types.bool; default = false; description = '' - Enable SSH agent emulation support in gpg-agent. + Enable SSH agent emulation support in gpg-agent. This allows you to use your GPG keys for SSH authentication. ''; }; @@ -34,7 +37,7 @@ in { type = lib.types.package; default = pkgs.pinentry-all; description = '' - The pinentry package to use. + The pinentry package to use. By default, `pkgs.pinentry-all` is installed, which includes all common backends (tty, curses, gtk2, qt, gnome3). ''; diff --git a/Modules/System/Service/vnc-server.nix b/Modules/System/Service/vnc-server.nix index 308390c..2b71eec 100644 --- a/Modules/System/Service/vnc-server.nix +++ b/Modules/System/Service/vnc-server.nix @@ -26,10 +26,9 @@ # }; # # WARNING: -# I tested this using XFCE no idea how it reacts to other DE or Wayland. -# I also take no responsibility for something now working or breaking +# I tested this using XFCE no idea how it reacts to other DE or Wayland. +# I also take no responsibility for something now working or breaking # - { config, pkgs, @@ -120,7 +119,7 @@ in { desktopManager.xfce.enable = true; xkb.layout = "de"; }; - + # Has been renamed # services.xserver.displayManager.defaultSession = cfg.session; services.displayManager.defaultSession = cfg.session;