summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2023-06-10 19:09:58 +0200
committerChristoph Cullmann <cullmann@kde.org>2023-06-10 19:09:58 +0200
commit23544f7fecfbf583d9f1f110646314ea6538431f (patch)
tree61475b6101872a7a10fae6c524d9c568ab8fc38f
parent7ef9ee727b0cb82a0ec9a390943146bb3d7f8db1 (diff)
fix intel graphics video
-rw-r--r--common.nix12
-rw-r--r--neko/configuration.nix4
2 files changed, 11 insertions, 5 deletions
diff --git a/common.nix b/common.nix
index 107b84e..5cf0b62 100644
--- a/common.nix
+++ b/common.nix
@@ -212,22 +212,28 @@ in
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
+ alacritty
+ ark
aspellDicts.de
aspellDicts.en
borgbackup
btop
chromium
clamav
+ clinfo
filelight
firefox
gitFull
+ glxinfo
hunspellDicts.de_DE
hunspellDicts.en_US
+ libva-utils
lsof
mc
unrar
unzip
- woeusb
+ vulkan-tools
+ wayland-utils
zsh
zsh-powerlevel10k
];
@@ -413,8 +419,6 @@ in
# extra packages, stuff for work/kde/...
home.packages = with pkgs; [
- alacritty
- ark
calibre
emacs
falkon
@@ -515,8 +519,6 @@ in
# extra packages, stuff for games
home.packages = with pkgs; [
- alacritty
- ark
lutris
sqlitebrowser
wine64
diff --git a/neko/configuration.nix b/neko/configuration.nix
index 487e5a3..3c5ab6d 100644
--- a/neko/configuration.nix
+++ b/neko/configuration.nix
@@ -19,4 +19,8 @@
# main network interface
systemd.network.networks."10-wan".matchConfig.Name = "enp9s0";
+
+ # intel graphics
+ hardware.opengl.extraPackages = with pkgs; [ intel-media-driver ];
+ hardware.opengl.extraPackages32 = with pkgs.pkgsi686Linux; [ intel-media-driver ];
}