🔧 remove hyperland from stylix
This commit is contained in:
parent
51e3d8df22
commit
0e5387dfc0
1 changed files with 15 additions and 1 deletions
16
flake.nix
16
flake.nix
|
@ -298,12 +298,26 @@
|
|||
];
|
||||
|
||||
stylixModules =
|
||||
{ pkgs, config, ... }:
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [ stylix.nixosModules.stylix ];
|
||||
stylix.enable = true;
|
||||
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-light-medium.yaml";
|
||||
stylix.image = ./assets/wallpaper.png;
|
||||
|
||||
home-manager.sharedModules = [
|
||||
{
|
||||
# no need for hyperland
|
||||
# https://github.com/danth/stylix/issues/543
|
||||
stylix.targets.hyprpaper.enable = lib.mkForce false;
|
||||
stylix.targets.hyprland.enable = lib.mkForce false;
|
||||
}
|
||||
];
|
||||
stylix.fonts = {
|
||||
serif = {
|
||||
package = pkgs.nerdfonts.override { fonts = [ "Ubuntu" ]; };
|
||||
|
|
Loading…
Reference in a new issue