Add extra stylix theming
This commit is contained in:
parent
1134f79dc7
commit
4c62219dde
|
@ -118,6 +118,10 @@
|
|||
image = ./wallpapers/waves/cat-waves.png;
|
||||
base16Scheme =
|
||||
"${inputs.catppuccin-base16}/base16/macchiato.yaml";
|
||||
targets = {
|
||||
console.enable = true;
|
||||
grub.enable = true;
|
||||
};
|
||||
};
|
||||
nix = {
|
||||
settings = {
|
||||
|
@ -216,6 +220,7 @@
|
|||
++ homeModules;
|
||||
home = { inherit username homeDirectory stateVersion; };
|
||||
programs.home-manager.enable = true;
|
||||
stylix.targets.xresources.enable = true;
|
||||
xdg.userDirs = {
|
||||
enable = true;
|
||||
createDirectories = true;
|
||||
|
|
15
home/fzf.nix
15
home/fzf.nix
|
@ -1,24 +1,11 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
stylix.targets.fzf.enable = true;
|
||||
programs.fzf = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
colors = {
|
||||
fg = "#cad3f5";
|
||||
bg = "#24273a";
|
||||
hl = "#ed8796";
|
||||
"fg+" = "#c678dd";
|
||||
"bg+" = "#363a4f";
|
||||
"hl+" = "#ed8796";
|
||||
info = "#c6a0f6";
|
||||
prompt = "#c6a0f6";
|
||||
pointer = "#f4dbd6";
|
||||
marker = "#f4dbd6";
|
||||
spinner = "#f4dbd6";
|
||||
header = "#ed8796";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -164,6 +164,9 @@ in ''
|
|||
windowrule = pin,(wlogout)
|
||||
windowrule = dimaround,(wlogout)
|
||||
windowrule = stayfocused,(wlogout)
|
||||
windowrule = pin,(Rofi)
|
||||
windowrule = dimaround,(Rofi)
|
||||
windowrule = stayfocused,(Rofi)
|
||||
windowrule = nofullscreenrequest,(Nxplayer.bin)
|
||||
windowrule = nomaximizerequest,(Nxplayer.bin)
|
||||
windowrulev2 = float,title:(File|Picture-in-Picture),class:(firefox)
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
stylix.targets.rofi.enable = true;
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
location = "center";
|
||||
|
@ -18,6 +19,5 @@
|
|||
disable-history = false;
|
||||
hide-scrollbar = true;
|
||||
};
|
||||
theme = ./theme.rasi;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue