18 lines
291 B
Nix
18 lines
291 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;
|
|
};
|
|
};
|
|
}
|