mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
21 lines
668 B
Nix
21 lines
668 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
stylix.autoEnable = false;
|
||
|
stylix.image = pkgs.fetchurl {
|
||
|
url = "https://w.wallhaven.cc/full/6d/wallhaven-6d5k6x.jpg";
|
||
|
sha256 = "+xl4H3UiVmMRNvMhIlaLdVTYYqnSyCTSX2UOTGsDQ8c=";
|
||
|
};
|
||
|
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-dark.yaml";
|
||
|
stylix.targets.alacritty.enable = true;
|
||
|
#programs.alacritty.enable = true;
|
||
|
stylix.targets.kitty.enable = true;
|
||
|
#programs.kitty.enable = true;
|
||
|
stylix.targets.gtk.enable = true;
|
||
|
stylix.targets.rofi.enable = true;
|
||
|
programs.rofi.enable = true;
|
||
|
stylix.targets.feh.enable = true;
|
||
|
programs.feh.enable = true;
|
||
|
# stylix.targets.lightdm.enable = true;
|
||
|
}
|