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
Raw Normal View History

2023-10-08 10:51:15 +01:00
{pkgs, ...}: {
2024-03-01 22:46:54 +00:00
imports = [
./nix-ld
];
2023-08-26 10:32:53 +01:00
programs = {
2024-01-30 17:51:06 +00:00
adb.enable = true;
ccache = {
enable = true;
packageNames = ["openmw"];
};
2023-08-26 10:32:53 +01:00
dconf.enable = true;
fish.enable = true;
2023-08-30 20:23:45 +01:00
hyprland.enable = true;
2023-08-26 10:32:53 +01:00
kdeconnect.enable = true;
ssh.startAgent = true;
2023-08-30 20:23:45 +01:00
steam.enable = true;
2023-08-26 10:32:53 +01:00
};
2024-03-01 22:46:54 +00:00
chaotic.steam.extraCompatPackages = with pkgs; [luxtorpeda proton-ge-custom];
2023-08-26 10:32:53 +01:00
}