This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/system/programs/default.nix

21 lines
408 B
Nix

{pkgs, ...}: {
imports = [
./nix-ld
];
programs = {
adb.enable = true;
ccache = {
enable = true;
packageNames = ["openmw"];
};
dconf.enable = true;
fish.enable = true;
hyprland.enable = true;
kdeconnect.enable = true;
ssh.startAgent = true;
steam.enable = true;
};
chaotic.steam.extraCompatPackages = with pkgs; [luxtorpeda proton-ge-custom];
}