Disable hyprland

This commit is contained in:
muon 2024-06-11 11:38:56 +00:00
parent 02b0f4bc18
commit 5a376db0da
2 changed files with 8 additions and 2 deletions

View file

@ -29,8 +29,11 @@ in {
mods.theme.enable = true; mods.theme.enable = true;
mods.theme.wallpaper = ./wallpaper.png; mods.theme.wallpaper = ./wallpaper.png;
mods.social.enable = true;
# Proprietary </3
mods.unfree.steam.enable = true; mods.unfree.steam.enable = true;
mods.unfree.nvidia.enable = true; mods.unfree.nvidia.enable = false;
# Hardware settings # Hardware settings
services.xserver.displayManager.sessionCommands = '' services.xserver.displayManager.sessionCommands = ''

View file

@ -1,5 +1,8 @@
{ pkgs, lib, config, ... }: { { pkgs, lib, config, ... }: {
options.mods.hyprland.enable = lib.mkEnableOption "enables hyprland"; options.mods.hyprland.enable = lib.mkEnableOption {
description = "enables hyprland";
default = false;
};
config = lib.mkIf config.mods.hyprland.enable { config = lib.mkIf config.mods.hyprland.enable {
programs.waybar.enable = true; programs.waybar.enable = true;