dotfiles/home-manager/system-nixos.nix
2024-10-07 11:05:14 -04:00

24 lines
419 B
Nix

{
pkgs,
inputs,
lib,
...
}:
{
imports = [ ./gui.nix ];
# TODO! replace this with a per-package unfree whitelist (i.e what is done with apple_cursors)
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
protontricks
beatsabermodmanager
protonup-qt
];
programs.alacritty.settings = {
window.decorations = lib.mkForce "full";
window.opacity = lib.mkForce 1.0;
};
}