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

17 lines
358 B
Nix

{pkgs, ...}: {
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];
}