commit 1bd069e76d354676b398f058da259c350cf7dcbc
parent fe5c2c78aaec2e4982d7e010a8caf4ff1752e7a4
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Thu, 24 Jul 2025 22:05:40 +0200
parent fe5c2c78aaec2e4982d7e010a8caf4ff1752e7a4
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Thu, 24 Jul 2025 22:05:40 +0200
config/nixos/modules/presets: remove `void`
1 file changed, 0 insertions(+), 27 deletions(-)
diff --git a/config/nixos/modules/presets/void/enable.nix b/config/nixos/modules/presets/void/enable.nix @@ -1,27 +0,0 @@ -{ - povSelf, - pkgs, - lib, - config, - hostConfig, - ... -}: -let - inherit (lib) types; - cfg = lib.getAttrFromPath povSelf config; - -in -{ - - option = { - type = types.bool; - default = false; - }; - - config = lib.mkIf cfg { - fonts.fontconfig.defaultFonts = { - monospace = [ "MesloLGS NF" ]; - }; - }; - -}