mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
15 lines
278 B
Nix
15 lines
278 B
Nix
{ pkgs, ... }: {
|
|
|
|
home.packages = with pkgs; [
|
|
keyutils
|
|
python3
|
|
python311Packages.pyperclip
|
|
python312Packages.tldextract
|
|
];
|
|
|
|
xdg.configFile."qutebrowser/userscripts/bitwarden" = {
|
|
source = ./userscripts/qute-bitwarden.py;
|
|
executable = true;
|
|
};
|
|
}
|