wip: dnsc-machine setup

This commit is contained in:
Dennis Schoepf 2025-11-24 00:03:10 +01:00
parent d998708665
commit 83b513af9c
3 changed files with 17 additions and 42 deletions

View file

@ -47,7 +47,7 @@
../modules/firefox
../modules/wm/swaync
../modules/wm/awww
../modules/wm/anyrun
../modules/wm/fuzzel
../modules/wm/niri
];

View file

@ -1,41 +0,0 @@
{ pkgs, ... }:
{
programs.anyrun = {
enable = true;
config = {
x = { fraction = 0.5; };
y = { fraction = 0.3; };
width = { fraction = 0.3; };
hideIcons = true;
ignoreExclusiveZones = false;
layer = "overlay";
hidePluginInfo = false;
closeOnClick = true;
showResultsImmediately = false;
maxEntries = null;
plugins = [
"${pkgs.anyrun}/lib/libapplications.so"
"${pkgs.anyrun}/lib/libsymbols.so"
"${pkgs.anyrun}/lib/libshell.so"
"${pkgs.anyrun}/lib/libniri_focus.so"
"${pkgs.anyrun}/lib/librink.so"
];
};
extraCss = /*css */ ''
#window, GtkWindow {
background: transparent;
}
'';
# 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
# )
# '';
};
}

View file

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
programs.fuzzel = {
enable = true;
settings = {
main = {
terminal = "${pkgs.wezterm}/bin/wezterm";
layer = "overlay";
};
colors = {
background = "#0f0b15";
};
};
};
}