[NixOS] Various tweaks

This commit is contained in:
Ivan Malison 2018-06-18 17:12:26 -07:00
parent b74cf8dc6d
commit 6f938a7604
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
3 changed files with 15 additions and 2 deletions

View File

@ -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
View File

@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
steam
];
boot.extraModulePackages = with pkgs; [ xboxdrv ];
}

View File

@ -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" ];