power saving, starr, jelly, akkoma

This commit is contained in:
Daniel Kauss Serna 2026-03-20 13:59:08 +01:00
parent 8f6d63909a
commit a0d19a672e
20 changed files with 439 additions and 22 deletions

View file

@ -1,5 +1,4 @@
{ config, pkgs, ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
@ -14,9 +13,18 @@
users.users.daniel = {
isNormalUser = true;
description = "Daniel Kauss Serna";
extraGroups = [ "networkmanager" "wheel" ];
extraGroups = [ "networkmanager" "wheel" "media"];
packages = [];
};
users.groups.media = {};
hardware.graphics.enable = true;
hardware.graphics.extraPackages = with pkgs; [
intel-media-driver
intel-vaapi-driver
libva-vdpau-driver
libvdpau-va-gl
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];