20 lines
257 B
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;
|
|
};
|
|
};
|
|
}
|