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;
}