added stylix but not working yet, switched from anyrun to wofi cause

looks nice innit
This commit is contained in:
Gabriella Bere 2024-10-08 16:53:10 +01:00
parent fc8d70e079
commit 49f6bc0926
7 changed files with 269 additions and 90 deletions

View file

@ -16,6 +16,7 @@
./nixvim.nix
./nextcloud.nix
./git.nix
./stylix.nix
];
# States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed
@ -56,6 +57,7 @@
bitwarden-desktop
xwaylandvideobridge
virtualbox
wofi
];
home.sessionVariables = {
@ -146,47 +148,6 @@
};
};
programs.anyrun = {
enable = true;
config = {
plugins = [
# An array of all the plugins you want, which either can be paths to the .so files, or their packages
inputs.anyrun.packages.${pkgs.system}.applications
inputs.anyrun.packages.${pkgs.system}.rink
# ./some_plugin.so
# "${inputs.anyrun.packages.${pkgs.system}.anyrun-with-all-plugins}/lib/kidex"
];
x = { fraction = 0.5; };
y = { fraction = 0.3; };
width = { fraction = 0.3; };
hideIcons = false;
ignoreExclusiveZones = false;
layer = "overlay";
hidePluginInfo = false;
closeOnClick = true;
showResultsImmediately = false;
maxEntries = null;
};
extraCss = ''
#window {
background: transparent;
}
#main {
background-color: grey;
text-color: white;
outline-color: black;
}
'';
# extraConfigFiles."some-plugin.ron".text = ''
# Config(
# // for any other plugin
# // this file will be put in ~/.config/anyrun/some-plugin.ron
# // refer to docs of xdg.configFile for available options
# )
# '';
};
services.blueman-applet.enable = true;
programs.htop.enable = true;
}

View file

@ -45,7 +45,7 @@
"$mod, F, exec, firefox"
"$mod, 1, exec, alacritty"
"$mod, D, exec, vesktop"
"$mod, space, exec, anyrun"
"$mod, space, exec, wofi --show drun"
# Screenshot tool
", Print, exec, grimblast copy area"

7
home-manager/stylix.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, ... }: {
# stylix = {
# enable = true;
## base16Scheme = "${pkgs.base16-schemes}/share/themes/icy.yaml";
# stylix.image = /home/blue/Pictures/wallpaper.png;
# };
}