fix intel graphics video
This commit is contained in:
parent
7ef9ee727b
commit
23544f7fec
12
common.nix
12
common.nix
|
@ -212,22 +212,28 @@ in
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
alacritty
|
||||||
|
ark
|
||||||
aspellDicts.de
|
aspellDicts.de
|
||||||
aspellDicts.en
|
aspellDicts.en
|
||||||
borgbackup
|
borgbackup
|
||||||
btop
|
btop
|
||||||
chromium
|
chromium
|
||||||
clamav
|
clamav
|
||||||
|
clinfo
|
||||||
filelight
|
filelight
|
||||||
firefox
|
firefox
|
||||||
gitFull
|
gitFull
|
||||||
|
glxinfo
|
||||||
hunspellDicts.de_DE
|
hunspellDicts.de_DE
|
||||||
hunspellDicts.en_US
|
hunspellDicts.en_US
|
||||||
|
libva-utils
|
||||||
lsof
|
lsof
|
||||||
mc
|
mc
|
||||||
unrar
|
unrar
|
||||||
unzip
|
unzip
|
||||||
woeusb
|
vulkan-tools
|
||||||
|
wayland-utils
|
||||||
zsh
|
zsh
|
||||||
zsh-powerlevel10k
|
zsh-powerlevel10k
|
||||||
];
|
];
|
||||||
|
@ -413,8 +419,6 @@ in
|
||||||
|
|
||||||
# extra packages, stuff for work/kde/...
|
# extra packages, stuff for work/kde/...
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
alacritty
|
|
||||||
ark
|
|
||||||
calibre
|
calibre
|
||||||
emacs
|
emacs
|
||||||
falkon
|
falkon
|
||||||
|
@ -515,8 +519,6 @@ in
|
||||||
|
|
||||||
# extra packages, stuff for games
|
# extra packages, stuff for games
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
alacritty
|
|
||||||
ark
|
|
||||||
lutris
|
lutris
|
||||||
sqlitebrowser
|
sqlitebrowser
|
||||||
wine64
|
wine64
|
||||||
|
|
|
@ -19,4 +19,8 @@
|
||||||
|
|
||||||
# main network interface
|
# main network interface
|
||||||
systemd.network.networks."10-wan".matchConfig.Name = "enp9s0";
|
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 ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue