Compare commits

..

2 commits

Author SHA1 Message Date
BuyMyMojo
666b668f00
enable nix command & flakes... scarry 2025-03-24 11:12:15 +11:00
BuyMyMojo
709d72664c
Move dev packages to system & diffle with corectrl 2025-03-24 11:08:41 +11:00
2 changed files with 13 additions and 1 deletions

View file

@ -16,6 +16,7 @@ let
}; };
in in
{ {
nix.settings.experimental-features = [ "nix-command" "flakes" ];
imports = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
@ -109,6 +110,7 @@ in
"docker" "docker"
"openrazer" "openrazer"
"gamemode" "gamemode"
"corectrl"
]; ];
# packages = with pkgs; [ # packages = with pkgs; [
# # discord.override { withMoonlight = true; } # # discord.override { withMoonlight = true; }
@ -125,6 +127,7 @@ in
programs.java = { enable = true; package = pkgs.zulu23; }; programs.java = { enable = true; package = pkgs.zulu23; };
programs.firefox.enable = true; programs.firefox.enable = true;
programs.thunderbird.enable = true;
programs.fish.enable = true; programs.fish.enable = true;
programs.corectrl = { programs.corectrl = {
@ -182,6 +185,15 @@ in
comma comma
rustc
cargo
go
pnpm
zig
maven
gradle
gcc
# noisetorch # noisetorch
# yad # yad
# unzip # unzip

View file

@ -25,7 +25,7 @@
]; ];
boot.initrd.kernelModules = [ "amdgpu" ]; boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.kernelParams = [ "amdgpu.ppfeaturemask=0xffffffff" ]; # boot.kernelParams = [ "amdgpu.ppfeaturemask=0xffffffff" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = { fileSystems."/" = {