Started migration of rotterdam to flake
This commit is contained in:
parent
3a9c4e152d
commit
ad5d0b0e2c
7 changed files with 94 additions and 16 deletions
32
hosts/desktops/rotterdam.nix
Normal file
32
hosts/desktops/rotterdam.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{ specialArgs, inputs, config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
# Host-common imports
|
||||
../common
|
||||
# Desktop-common imports
|
||||
./common
|
||||
# Host-specific imports
|
||||
./rotterdam
|
||||
];
|
||||
|
||||
networking.hostName = "rotterdam";
|
||||
|
||||
nix.nixPath = [ "nixos-config=${./rotterdam.nix}" ];
|
||||
|
||||
boot.kernelParams = [
|
||||
"processor.max_cstate=1" # Fixes bug where ryzen cpus freeze when in highest C state
|
||||
];
|
||||
|
||||
services.hardware.openrgb.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
yuzu-ea
|
||||
];
|
||||
|
||||
programs.corectrl.enable = true;
|
||||
|
||||
users.users.user.extraGroups = [
|
||||
"corectrl"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue