[NixOS] Various tweaks
This commit is contained in:
parent
b74cf8dc6d
commit
6f938a7604
@ -69,6 +69,9 @@ let
|
|||||||
--prefix PATH : "${wrapperPath}"
|
--prefix PATH : "${wrapperPath}"
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
pasystray-appindicator = with pkgs; pasystray.overrideAttrs (oldAttrs: rec {
|
||||||
|
buildInputs = oldAttrs.buildInputs ++ [libappindicator-gtk3];
|
||||||
|
});
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
@ -121,9 +124,9 @@ in
|
|||||||
hexchat
|
hexchat
|
||||||
keybase-gui
|
keybase-gui
|
||||||
kodi
|
kodi
|
||||||
|
lxappearance
|
||||||
rxvt_unicode
|
rxvt_unicode
|
||||||
spotify
|
spotify
|
||||||
steam
|
|
||||||
termite
|
termite
|
||||||
vlc
|
vlc
|
||||||
xfce.thunar
|
xfce.thunar
|
||||||
@ -134,14 +137,17 @@ in
|
|||||||
hicolor-icon-theme
|
hicolor-icon-theme
|
||||||
plasma5.breeze-gtk
|
plasma5.breeze-gtk
|
||||||
plasma5.breeze-qt5
|
plasma5.breeze-qt5
|
||||||
|
gnome-breeze
|
||||||
|
|
||||||
# Desktop
|
# Desktop
|
||||||
|
# haskellPackages.status-notifier-item
|
||||||
autorandr
|
autorandr
|
||||||
clipit-master
|
clipit-master
|
||||||
compton
|
compton
|
||||||
feh
|
feh
|
||||||
gnome3.gpaste
|
gnome3.gpaste
|
||||||
networkmanagerapplet
|
networkmanagerapplet
|
||||||
|
pasystray-appindicator
|
||||||
pinentry
|
pinentry
|
||||||
pommed_light
|
pommed_light
|
||||||
rofi
|
rofi
|
||||||
@ -151,7 +157,6 @@ in
|
|||||||
volnoti
|
volnoti
|
||||||
xclip
|
xclip
|
||||||
xdotool
|
xdotool
|
||||||
# haskellPackages.status-notifier-item
|
|
||||||
xorg.xkbcomp
|
xorg.xkbcomp
|
||||||
xsettingsd
|
xsettingsd
|
||||||
|
|
||||||
|
7
nixos/games.nix
Normal file
7
nixos/games.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
steam
|
||||||
|
];
|
||||||
|
boot.extraModulePackages = with pkgs; [ xboxdrv ];
|
||||||
|
}
|
@ -4,6 +4,7 @@
|
|||||||
imports = [
|
imports = [
|
||||||
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
|
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
|
||||||
../configuration.nix
|
../configuration.nix
|
||||||
|
../games.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" ];
|
||||||
|
Loading…
Reference in New Issue
Block a user