fish 4.0; use comic code; add swhkd

This commit is contained in:
EdenQwQ 2025-03-05 16:08:57 +08:00
parent 03adcc38d4
commit 5e51149369
14 changed files with 125 additions and 8 deletions

View file

@ -4,5 +4,6 @@
./doas.nix
./niri.nix
./ai.nix
./swhkd.nix
];
}

18
os/programs/swhkd.nix Normal file
View file

@ -0,0 +1,18 @@
{ pkgs, ... }:
let
swhkd = import ../../pkgs/swhkd/swhkd.nix {
inherit (pkgs)
lib
rustPlatform
fetchFromGitHub
makeWrapper
pkg-config
;
};
in
{
environment.systemPackages = [
swhkd
];
systemd.packages = [ swhkd ];
}