Files
shed/modules/sys/software/programs.nix

20 lines
257 B
Nix

{ pkgs, ... }:
{
programs = {
hyprland.enable = true;
zsh.enable = true;
nix-ld = {
enable = true;
libraries = with pkgs; [
stdenv.cc.cc
ffmpeg-full
];
};
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
};
}