From 709d72664c2cbdefc08aa1bea2f8c28ede25bd88 Mon Sep 17 00:00:00 2001 From: BuyMyMojo Date: Mon, 24 Mar 2025 11:08:41 +1100 Subject: [PATCH 1/2] Move dev packages to system & diffle with corectrl --- nixos/configuration.nix | 11 +++++++++++ nixos/hardware-configuration.nix | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 1cb3183..5bc0a74 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -109,6 +109,7 @@ in "docker" "openrazer" "gamemode" + "corectrl" ]; # packages = with pkgs; [ # # discord.override { withMoonlight = true; } @@ -125,6 +126,7 @@ in programs.java = { enable = true; package = pkgs.zulu23; }; programs.firefox.enable = true; + programs.thunderbird.enable = true; programs.fish.enable = true; programs.corectrl = { @@ -182,6 +184,15 @@ in comma + rustc + cargo + go + pnpm + zig + maven + gradle + gcc + # noisetorch # yad # unzip diff --git a/nixos/hardware-configuration.nix b/nixos/hardware-configuration.nix index 5e4f619..ff15cde 100644 --- a/nixos/hardware-configuration.nix +++ b/nixos/hardware-configuration.nix @@ -25,7 +25,7 @@ ]; boot.initrd.kernelModules = [ "amdgpu" ]; boot.kernelModules = [ "kvm-amd" ]; - boot.kernelParams = [ "amdgpu.ppfeaturemask=0xffffffff" ]; + # boot.kernelParams = [ "amdgpu.ppfeaturemask=0xffffffff" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { From 666b668f00d2dfeab0bd179d7a8ebdb8f1d74825 Mon Sep 17 00:00:00 2001 From: BuyMyMojo Date: Mon, 24 Mar 2025 11:12:15 +1100 Subject: [PATCH 2/2] enable nix command & flakes... scarry --- nixos/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 5bc0a74..24ca8aa 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -16,6 +16,7 @@ let }; in { + nix.settings.experimental-features = [ "nix-command" "flakes" ]; imports = [ # Include the results of the hardware scan.