steam
This commit is contained in:
parent
453505f275
commit
74c125865e
|
@ -6,7 +6,7 @@
|
|||
boot.loader = {
|
||||
efi = {
|
||||
canTouchEfiVariables = true;
|
||||
efiSysMountPoint = "/boot/efi"; # ← use the same mount point here.
|
||||
efiSysMountPoint = "/boot/efi";
|
||||
};
|
||||
grub = {
|
||||
efiSupport = true;
|
||||
|
@ -14,12 +14,12 @@
|
|||
};
|
||||
};
|
||||
|
||||
|
||||
services.hardware.openrgb.enable = true;
|
||||
|
||||
imports = [
|
||||
../../modules
|
||||
./hardware.nix
|
||||
./unfree.nix
|
||||
inputs.home-manager.nixosModules.default
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,13 +1,15 @@
|
|||
{ pkgs, lib, ... }:
|
||||
{
|
||||
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
||||
"steam-original"
|
||||
"steam"
|
||||
"steam-run"
|
||||
];
|
||||
programs.steam.enable = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
prismlauncher
|
||||
zulu17
|
||||
mangohud
|
||||
lutris
|
||||
zulu17
|
||||
];
|
||||
}
|
||||
|
|
|
@ -26,4 +26,5 @@
|
|||
time.timeZone = "Europe/Zurich";
|
||||
system.stateVersion = "23.11";
|
||||
home-manager.backupFileExtension = "backup";
|
||||
services.openssh.enable = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue