Moved stylix config and cleaned out home.nix

This commit is contained in:
Emmet 2023-05-13 11:18:30 -05:00
parent 3a2ba281e8
commit 0d85e28d4e
2 changed files with 21 additions and 38 deletions

20
user/style/stylix.nix Normal file
View file

@ -0,0 +1,20 @@
{ 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;
}