24 lines
419 B
Nix
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;
|
|
};
|
|
}
|