🔧 add magic-wormhole-rs

This commit is contained in:
Ingolf Wagner 2025-06-12 10:35:38 +02:00
parent f8be39996a
commit a75761a28e
3 changed files with 11 additions and 3 deletions
homes

View file

@ -21,6 +21,8 @@ with lib;
# helper
pkgs.ipcalc
pkgs.magic-wormhole-rs
];
}

View file

@ -9,6 +9,7 @@
../palo
./git.nix
./keymapper.nix
./noti.nix
./ssh.nix
./taskwarrior.nix
./vpn.nix
@ -41,9 +42,6 @@
# we need nixGL to run kitty, because it depends on GL it's not nice, but not to bad either
xsession.windowManager.i3.config.terminal = lib.mkForce "nixGLIntel kitty";
# todo
programs.noti.enable = true;
# todo
xsession.windowManager.i3.config.keybindings."Print" =
lib.mkForce "exec ${pkgs.flameshot}/bin/flameshot gui -c -p ~/Pictures/Screenshots/";

View file

@ -0,0 +1,8 @@
{ config, ... }:
{
programs.noti.enable = true;
# we configure it manual so we have to back up it
backup.dirs = [ "${config.xdg.configHome}/noti" ];
}