mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Disable hyprland
This commit is contained in:
parent
02b0f4bc18
commit
5a376db0da
2 changed files with 8 additions and 2 deletions
|
|
@ -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 = ''
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue