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

12 lines
276 B
Nix
Raw Normal View History

2023-10-08 10:51:15 +01:00
{pkgs, ...}: {
2023-08-26 10:32:53 +01:00
programs = {
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
};
2023-10-08 10:51:15 +01:00
chaotic.steam.extraCompatPackages = with pkgs; [luxtorpeda proton-ge-custom];
2023-08-26 10:32:53 +01:00
}