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.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; 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."/" = fileSystems."/" =
{ device = "tank/work/nixos"; { device = "tank/work/nixos";
fsType = "zfs"; fsType = "zfs";
@ -43,5 +56,6 @@ in {
networking.hostName = "sphere"; networking.hostName = "sphere";
powerManagement.powertop.enable = true; powerManagement.powertop.enable = true;
services.tlp.enable = true; services.tlp.enable = true;
services.hardware.bolt.enable = true;
} }

View file

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

View file

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

View file

@ -20,9 +20,23 @@ in {
swayidle swayidle
swaylock swaylock
xwayland 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 = { environment = {
etc = { etc = {
"sway/config".source = ../dotfiles/sway/config; "sway/config".source = ../dotfiles/sway/config;

View file

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