Compare commits

...

6 commits

5 changed files with 33 additions and 1 deletions

View file

@ -15,6 +15,19 @@ in {
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
nixpkgs.config.packageOverrides = pkgs: {
vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };
};
hardware.opengl = {
enable = true;
extraPackages = with pkgs; [
intel-media-driver # LIBVA_DRIVER_NAME=iHD
vaapiIntel # LIBVA_DRIVER_NAME=i965
vaapiVdpau
libvdpau-va-gl
];
};
fileSystems."/" =
{ device = "tank/work/nixos";
fsType = "zfs";
@ -43,5 +56,6 @@ in {
networking.hostName = "sphere";
powerManagement.powertop.enable = true;
services.tlp.enable = true;
services.hardware.bolt.enable = true;
}

View file

@ -6,8 +6,9 @@ in {
environment.systemPackages = with pkgs; [
cryptsetup
kubectl
unstable.kubernetes-helm
whois
unstable.kubernetes-helm
unstable.kustomize
# podman
conmon

View file

@ -16,7 +16,9 @@ in {
gnupg
htop
jq
mtr
ncdu
nload
openssl
pv
ripgrep

View file

@ -20,9 +20,23 @@ in {
swayidle
swaylock
xwayland
wf-recorder
];
};
services.pipewire.enable = true;
xdg.portal = {
enable = true;
gtkUsePortal = true;
extraPortals = with unstable; [
xdg-desktop-portal-gtk
xdg-desktop-portal-wlr
];
};
boot.extraModulePackages = with config.boot.kernelPackages; [
v4l2loopback
];
environment = {
etc = {
"sway/config".source = ../dotfiles/sway/config;

View file

@ -13,6 +13,7 @@ in {
networking.extraHosts = ''
35.234.109.94 fsi.thomann.de
10.100.7.11 mon.netzmarkt.de
'';
environment.systemPackages = with pkgs; [