Fix indentation

master
Sven Slootweg 7 years ago
parent 2c4312d9cd
commit 6370f16b48

@ -1,36 +1,36 @@
packages: {config, ...}: { packages: {config, ...}: {
environment.systemPackages = with packages; [ environment.systemPackages = with packages; [
# Cryptocurrency # Cryptocurrency
nixpkgs.electrum nixpkgs.electrum
# Browsers # Browsers
nixpkgs.chromium nixpkgs.chromium
nixpkgs.firefox nixpkgs.firefox
nixpkgs.w3m nixpkgs.w3m
# Filesystems # Filesystems
nixpkgs.ntfs3g nixpkgs.ntfs3g
nixpkgs.davfs2 nixpkgs.davfs2
nixpkgs.exfat nixpkgs.exfat
# Build tools # Build tools
nixpkgs.gcc nixpkgs.gcc
nixpkgs.gnumake nixpkgs.gnumake
nixpkgs.automake nixpkgs.automake
nixpkgs.autoconf nixpkgs.autoconf
# Development tools # Development tools
unstable.atom unstable.atom
nixpkgs.geany nixpkgs.geany
nixpkgs.sqlitebrowser nixpkgs.sqlitebrowser
nixpkgs.gitAndTools.gitFull nixpkgs.gitAndTools.gitFull
nixpkgs.meld nixpkgs.meld
nixpkgs.radare2 nixpkgs.radare2
nixpkgs.wxhexeditor nixpkgs.wxhexeditor
nixpkgs.gdb nixpkgs.gdb
# Node.js # Node.js
nixpkgs.nodejs-6_x nixpkgs.nodejs-6_x
unstable.electron unstable.electron
nixpkgs.nodePackages_6_x.node2nix nixpkgs.nodePackages_6_x.node2nix
@ -38,125 +38,125 @@ packages: {config, ...}: {
nixpkgs.rustChannels.nightly.rust nixpkgs.rustChannels.nightly.rust
nixpkgs.rustChannels.nightly.rust-src nixpkgs.rustChannels.nightly.rust-src
# Downloaders and filesharing # Downloaders and filesharing
(unstable.python35Packages.youtube-dl.override { (unstable.python35Packages.youtube-dl.override {
ffmpeg = unstable.ffmpeg-full; ffmpeg = unstable.ffmpeg-full;
}) })
unstable.megatools unstable.megatools
nixpkgs.aria2 nixpkgs.aria2
nixpkgs.qbittorrent nixpkgs.qbittorrent
nixpkgs.filezilla nixpkgs.filezilla
# Emulation # Emulation
nixpkgs.wineUnstable nixpkgs.wineUnstable
nixpkgs.dosbox nixpkgs.dosbox
nixpkgs.playonlinux nixpkgs.playonlinux
# Light-weight games # Light-weight games
nixpkgs.simutrans nixpkgs.simutrans
unstable.openttd unstable.openttd
unstable.voxelands unstable.voxelands
# File and archive management # File and archive management
nixpkgs.p7zip nixpkgs.p7zip
nixpkgs.pcmanfm nixpkgs.pcmanfm
# Password management # Password management
nixpkgs.keepassx2 nixpkgs.keepassx2
# Chat and communication # Chat and communication
nixpkgs.pidgin nixpkgs.pidgin
nixpkgs.konversation nixpkgs.konversation
# Productivity # Productivity
nixpkgs.libreoffice nixpkgs.libreoffice
nixpkgs.gimp nixpkgs.gimp
nixpkgs.inkscape nixpkgs.inkscape
nixpkgs.audacity nixpkgs.audacity
nixpkgs.shutter nixpkgs.shutter
nixpkgs.jekyll nixpkgs.jekyll
# Multimedia # Multimedia
# Video # Video
nixpkgs.mplayer nixpkgs.mplayer
nixpkgs.mpv nixpkgs.mpv
nixpkgs.vlc nixpkgs.vlc
nixpkgs.kodi nixpkgs.kodi
# Audio # Audio
nixpkgs.tomahawk nixpkgs.tomahawk
nixpkgs.audacious nixpkgs.audacious
nixpkgs.mpg321 nixpkgs.mpg321
nixpkgs.xmp nixpkgs.xmp
# Documents # Documents
nixpkgs.evince nixpkgs.evince
nixpkgs.djvulibre nixpkgs.djvulibre
# Images # Images
nixpkgs.gqview nixpkgs.gqview
# Utilities # Utilities
nixpkgs.mediainfo nixpkgs.mediainfo
# Diagnostics # Diagnostics
# General # General
nixpkgs.lsof nixpkgs.lsof
# Processes # Processes
nixpkgs.htop nixpkgs.htop
nixpkgs.psmisc nixpkgs.psmisc
# Network # Network
nixpkgs.iftop nixpkgs.iftop
nixpkgs.nload nixpkgs.nload
nixpkgs.tcpdump nixpkgs.tcpdump
nixpkgs.nmap nixpkgs.nmap
nixpkgs.mtr nixpkgs.mtr
nixpkgs.vnstat nixpkgs.vnstat
nixpkgs.telnet nixpkgs.telnet
# Disk and filesystem # Disk and filesystem
nixpkgs.smartmontools nixpkgs.smartmontools
nixpkgs.iotop nixpkgs.iotop
nixpkgs.ncdu nixpkgs.ncdu
nixpkgs.gparted nixpkgs.gparted
nixpkgs.cv # == `progress` nixpkgs.cv # == `progress`
# Peripherals # Peripherals
nixpkgs.pciutils nixpkgs.pciutils
nixpkgs.usbutils nixpkgs.usbutils
# Graphics # Graphics
nixpkgs.glxinfo nixpkgs.glxinfo
]; ];
nixpkgs.config = { nixpkgs.config = {
firefox = { firefox = {
enableGoogleTalkPlugin = true; enableGoogleTalkPlugin = true;
enableAdobeFlash = true; enableAdobeFlash = true;
jre = true; jre = true;
}; };
chromium = { chromium = {
enablePepperFlash = true; enablePepperFlash = true;
enablePepperPDF = true; enablePepperPDF = true;
jre = true; jre = true;
}; };
}; };
services = { services = {
postgresql = { postgresql = {
enable = true; enable = true;
package = packages.nixpkgs.postgresql95; package = packages.nixpkgs.postgresql95;
authentication = '' authentication = ''
local all all ident local all all ident
host all all 127.0.0.1/32 md5 host all all 127.0.0.1/32 md5
''; '';
}; };
}; };
networking.firewall.allowedTCPPorts = [ networking.firewall.allowedTCPPorts = [
8999 # qBittorrent 8999 # qBittorrent
]; ];
} }

Loading…
Cancel
Save