mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-19 05:20:56 +01:00
33 lines
551 B
Nix
33 lines
551 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
xdg = {
|
|
portal = {
|
|
enable = true;
|
|
extraPortals = with pkgs; [
|
|
xdg-desktop-portal-wlr
|
|
xdg-desktop-portal-gtk
|
|
];
|
|
gtkUsePortal = true;
|
|
};
|
|
};
|
|
|
|
nix = {
|
|
package = pkgs.nixUnstable;
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
};
|
|
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
};
|
|
|
|
/* nixpkgs.config.packageOverrides = pkgs: {
|
|
steam = pkgs.steam.override {
|
|
nativeOnly = true;
|
|
};
|
|
}; */
|
|
|
|
programs.steam.enable = true;
|
|
}
|