Compare commits

...

2 commits

2 changed files with 10 additions and 0 deletions

View file

@ -31,6 +31,8 @@ xkb_symbols "us-intl-winmax" {
home.packages = with pkgs; [ home.packages = with pkgs; [
kdenlive kdenlive
ffmpeg-full
frei0r
inkscape inkscape
]; ];

View file

@ -42,4 +42,12 @@
swapDevices = [ ]; swapDevices = [ ];
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.opengl.enable = true;
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = true;
hardware.opengl.extraPackages = with pkgs; [
intel-media-driver
];
} }