diff options
author | Karel Kočí <cynerd@email.cz> | 2022-10-25 16:45:13 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-10-25 16:45:13 +0200 |
commit | 06293bfbb5082dc636358d49f3e6fea88c4f2a67 (patch) | |
tree | 194d9b2c7437fa87f372b7c264d7656999d12249 /nixos/nixos-modules-minfake.nix | |
parent | 5a84ab6dd69cb734a35bfb6f9e9b9c3a4ce9956d (diff) | |
download | nixturris-06293bfbb5082dc636358d49f3e6fea88c4f2a67.tar.gz nixturris-06293bfbb5082dc636358d49f3e6fea88c4f2a67.tar.bz2 nixturris-06293bfbb5082dc636358d49f3e6fea88c4f2a67.zip |
Try to rework minimal system
Diffstat (limited to 'nixos/nixos-modules-minfake.nix')
-rw-r--r-- | nixos/nixos-modules-minfake.nix | 37 |
1 files changed, 0 insertions, 37 deletions
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 = { - }; -} - - |