From 06293bfbb5082dc636358d49f3e6fea88c4f2a67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Tue, 25 Oct 2022 16:45:13 +0200 Subject: Try to rework minimal system --- nixos/nixos-modules-minfake.nix | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 nixos/nixos-modules-minfake.nix (limited to 'nixos/nixos-modules-minfake.nix') diff --git a/nixos/nixos-modules-minfake.nix b/nixos/nixos-modules-minfake.nix deleted file mode 100644 index e7836cb..0000000 --- a/nixos/nixos-modules-minfake.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ config, lib, pkgs, ... }: - -with lib; - -{ - - options = let - - mkFake = {type, default}: mkOption { - type = type; - default = default; - description = "The module this option was part of was removed as part of Turris trim"; - }; - mkFakeList = type: mkFake { - type = types.listOf type; - default = []; - }; - - mkFakeDisable = mkOption { - type = types.bool; - default = false; - description = "The in default disabled option that was removed as part of Turris trim"; - }; - - in { - - services.xserver.enable = mkFakeDisable; - services.xserver.displayManager.hiddenUsers = mkFakeList types.str; - services.xserver.startGnuPGAgent = mkFakeDisable; - - }; - - config = { - }; -} - - -- cgit v1.2.3