Compare commits
3 commits
981bc43fbe
...
9c0b8230ff
Author | SHA1 | Date | |
---|---|---|---|
9c0b8230ff |
|||
4ad938f047 |
|||
d5f03ab08b |
3 changed files with 23 additions and 2 deletions
|
@ -1,4 +1,10 @@
|
|||
{pkgs, ...}: {
|
||||
{pkgs, ...}: let
|
||||
niri-switch-to-workspace = pkgs.writeShellScriptBin "niri-switch-to-workspace" ''
|
||||
workspace="$(echo -en "main\nsocial\nkeepass\nbrowser\ninfra\nscratch\nmultimedia" | fuzzel --dmenu)"
|
||||
# niri msg action focus-workspace-monitor "$workspace"
|
||||
niri msg action focus-workspace "$workspace"
|
||||
'';
|
||||
in {
|
||||
environment.systemPackages = builtins.attrValues {
|
||||
inherit
|
||||
(pkgs)
|
||||
|
@ -11,10 +17,12 @@
|
|||
cinny-desktop
|
||||
difftastic
|
||||
dnsutils
|
||||
devenv
|
||||
element-desktop
|
||||
evince
|
||||
gcc
|
||||
gnumake
|
||||
gparted
|
||||
halloy
|
||||
helvum
|
||||
httpie
|
||||
|
@ -51,6 +59,7 @@
|
|||
radare2
|
||||
ripgrep
|
||||
rmpc
|
||||
ruby_3_2
|
||||
signal-desktop
|
||||
strawberry
|
||||
telegram-desktop
|
||||
|
@ -70,5 +79,6 @@
|
|||
zotero
|
||||
zoxide
|
||||
;
|
||||
inherit niri-switch-to-workspace;
|
||||
};
|
||||
}
|
||||
|
|
11
modules/programs/gui/fuzzel/module.nix
Normal file
11
modules/programs/gui/fuzzel/module.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
in {
|
||||
environment.systemPackages = builtins.attrValues {
|
||||
inherit (pkgs) fuzzel;
|
||||
};
|
||||
}
|
|
@ -13,7 +13,7 @@ in {
|
|||
programs.xwayland.enable = lib.mkForce false;
|
||||
services.gnome.gnome-keyring.enable = lib.mkForce false;
|
||||
environment.systemPackages = builtins.attrValues {
|
||||
inherit (pkgs) wmenu swaylock;
|
||||
inherit (pkgs) wmenu swaylock avizo playerctl;
|
||||
};
|
||||
|
||||
xdg.portal = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue