From 632727e5aa51e09e4be6d5c7cb60b4abc8539d71 Mon Sep 17 00:00:00 2001 From: tristan Date: Thu, 25 May 2023 08:59:08 +0100 Subject: [PATCH] upgrade gpu --- lib/modules/hyprland.nix | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 lib/modules/hyprland.nix diff --git a/lib/modules/hyprland.nix b/lib/modules/hyprland.nix deleted file mode 100644 index 1cf2829..0000000 --- a/lib/modules/hyprland.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ user }: { lib, pkgs, config, ... }: -with lib; -let - cfg = config.roles.hyprland; -in -{ - options.roles = { - hyprland = { - enable = mkEnableOption "hyprland"; - }; - }; - - config = mkIf cfg.enable { - home-manager.users.${user}.imports = [{ - }]; - }; -}