aboutsummaryrefslogtreecommitdiffstats
path: root/modules/nixos/sils/graphics.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/sils/graphics.nix')
-rw-r--r--modules/nixos/sils/graphics.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/nixos/sils/graphics.nix b/modules/nixos/sils/graphics.nix
deleted file mode 100644
index 77f58d8..0000000
--- a/modules/nixos/sils/graphics.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- lib,
- config,
- ...
-}: let
- cfg = config.sils.graphics;
-in {
- options.sils.graphics.enable = lib.mkEnableOption "graphics";
- config = lib.mkIf cfg.enable {
- hardware.graphics.enable = true;
- };
-}