This commit is contained in:
joygnu 2024-08-17 20:34:38 +02:00
parent 10e63af148
commit 105538b646
3 changed files with 6 additions and 3 deletions

View file

@ -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
];
}

View file

@ -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
];
}

View file

@ -26,4 +26,5 @@
time.timeZone = "Europe/Zurich";
system.stateVersion = "23.11";
home-manager.backupFileExtension = "backup";
services.openssh.enable = true;
}