wip: dnsc-machine setup
This commit is contained in:
parent
d998708665
commit
83b513af9c
3 changed files with 17 additions and 42 deletions
|
|
@ -47,7 +47,7 @@
|
||||||
../modules/firefox
|
../modules/firefox
|
||||||
../modules/wm/swaync
|
../modules/wm/swaync
|
||||||
../modules/wm/awww
|
../modules/wm/awww
|
||||||
../modules/wm/anyrun
|
../modules/wm/fuzzel
|
||||||
../modules/wm/niri
|
../modules/wm/niri
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
|
||||||
# )
|
|
||||||
# '';
|
|
||||||
};
|
|
||||||
}
|
|
||||||
16
modules/wm/fuzzel/default.nix
Normal file
16
modules/wm/fuzzel/default.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.fuzzel = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
main = {
|
||||||
|
terminal = "${pkgs.wezterm}/bin/wezterm";
|
||||||
|
layer = "overlay";
|
||||||
|
};
|
||||||
|
colors = {
|
||||||
|
background = "#0f0b15";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue