mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 02:26:14 +01:00
31 lines
458 B
Nix
31 lines
458 B
Nix
inputs:
|
|
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, rlib }:
|
|
{ config, lib, pkgs, ... }:
|
|
{
|
|
services.gpg-agent = {
|
|
pinentryFlavor = "gtk2";
|
|
enable = true;
|
|
};
|
|
programs.gpg.enable = true;
|
|
|
|
home.packages = with nixpkgs; [
|
|
zip
|
|
unzip
|
|
pinentry
|
|
libqrencode
|
|
ssss
|
|
unrar
|
|
cargo
|
|
exa
|
|
bat
|
|
pciutils
|
|
git
|
|
socat
|
|
gnumake
|
|
nixpkgs-unstable.bfs
|
|
hugo
|
|
llvmPackages.bintools
|
|
pkgconfig
|
|
];
|
|
}
|