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 = { boot.loader = {
efi = { efi = {
canTouchEfiVariables = true; canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi"; # ← use the same mount point here. efiSysMountPoint = "/boot/efi";
}; };
grub = { grub = {
efiSupport = true; efiSupport = true;
@ -14,12 +14,12 @@
}; };
}; };
services.hardware.openrgb.enable = true; services.hardware.openrgb.enable = true;
imports = [ imports = [
../../modules ../../modules
./hardware.nix ./hardware.nix
./unfree.nix
inputs.home-manager.nixosModules.default inputs.home-manager.nixosModules.default
]; ];
} }

View file

@ -1,13 +1,15 @@
{ pkgs, lib, ... }: { pkgs, lib, ... }:
{ {
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"steam-original"
"steam" "steam"
"steam-run"
]; ];
programs.steam.enable = true; programs.steam.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
prismlauncher prismlauncher
zulu17
mangohud mangohud
lutris lutris
zulu17
]; ];
} }

View file

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