stockholm/tv/1systems/xu.nix

173 lines
3.3 KiB
Nix
Raw Normal View History

2015-10-29 00:11:44 +00:00
{ config, lib, pkgs, ... }:
2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2015-10-29 00:11:44 +00:00
{
krebs.build.host = config.krebs.hosts.xu;
imports = [
2016-02-15 15:27:11 +00:00
../.
2015-10-29 00:11:44 +00:00
../2configs/hw/x220.nix
2016-02-01 16:13:46 +00:00
../2configs/exim-retiolum.nix
2015-10-29 00:11:44 +00:00
../2configs/git.nix
../2configs/mail-client.nix
2016-02-17 22:35:25 +00:00
../2configs/man.nix
2016-03-05 11:57:46 +00:00
../2configs/nginx/public_html.nix
../2configs/pulse.nix
2016-02-01 16:32:04 +00:00
../2configs/retiolum.nix
../2configs/binary-cache
2015-10-29 00:11:44 +00:00
../2configs/xserver
{
environment.systemPackages = with pkgs; [
# root
cryptsetup
# tv
bc
bind # dig
2016-02-13 16:58:40 +00:00
cac-api
2015-10-29 00:11:44 +00:00
dic
file
2016-06-29 23:34:25 +00:00
gnupg1compat
2015-10-29 00:11:44 +00:00
haskellPackages.hledger
htop
jq
mkpasswd
netcat
2016-10-27 16:36:17 +00:00
netcup
2015-10-29 00:11:44 +00:00
nix-repl
nmap
p7zip
2015-11-07 09:04:46 +00:00
pass
2016-06-03 13:05:47 +00:00
q
2015-10-29 00:11:44 +00:00
qrencode
2016-10-06 17:16:42 +00:00
#texLive
2015-10-29 00:11:44 +00:00
tmux
#ack
#apache-httpd
#ascii
#emacs
#es
#esniper
#gcc
#gptfdisk
#graphviz
#haskellPackages.cabal2nix
#haskellPackages.ghc
#haskellPackages.shake
#hdparm
#i7z
#iftop
#imagemagick
#inotifyTools
#iodine
#iotop
#lshw
#lsof
#minicom
#mtools
#ncmpc
#nethogs
#nix-prefetch-scripts #cvs bug
#openssl
#openswan
#parted
#perl
#powertop
#ppp
#proot
#pythonPackages.arandr
#pythonPackages.youtube-dl
#racket
#rxvt_unicode-with-plugins
#scrot
#sec
#silver-searcher
#sloccount
#smartmontools
#socat
#sshpass
#strongswan
#sysdig
#sysstat
#tcpdump
#tlsdate
#unetbootin
#utillinuxCurses
#wvdial
#xdotool
#xkill
#xl2tpd
#xsel
2015-11-07 18:27:47 +00:00
unison
2015-10-29 00:11:44 +00:00
];
}
];
boot.initrd.luks = {
cryptoModules = [ "aes" "sha512" "xts" ];
devices = [
{ name = "xuca"; device = "/dev/sda2"; }
];
};
fileSystems = {
"/" = {
device = "/dev/mapper/xuvga-root";
fsType = "btrfs";
options = ["defaults" "noatime" "ssd" "compress=lzo"];
2015-10-29 00:11:44 +00:00
};
2016-10-13 19:57:08 +00:00
"/bku" = {
device = "/dev/mapper/xuvga-bku";
fsType = "btrfs";
options = ["defaults" "noatime" "ssd" "compress=lzo"];
};
2015-10-29 00:11:44 +00:00
"/home" = {
device = "/dev/mapper/xuvga-home";
fsType = "btrfs";
options = ["defaults" "noatime" "ssd" "compress=lzo"];
2015-10-29 00:11:44 +00:00
};
"/boot" = {
device = "/dev/sda1";
};
"/tmp" = {
device = "tmpfs";
fsType = "tmpfs";
options = ["nosuid" "nodev" "noatime"];
2015-10-29 00:11:44 +00:00
};
};
environment.systemPackages = with pkgs; [
ethtool
2016-06-29 23:05:21 +00:00
tinc_pre
2015-10-29 00:11:44 +00:00
iptables
#jack2
gptfdisk
];
security.wrappers = {
sendmail.source = "${pkgs.exim}/bin/sendmail"; # for cron
};
2015-10-29 00:11:44 +00:00
services.printing.enable = true;
# see tmpfiles.d(5)
systemd.tmpfiles.rules = [
"d /tmp 1777 root root - -" # does this work with mounted /tmp?
];
#services.bitlbee.enable = true;
#services.tor.client.enable = true;
#services.tor.enable = true;
#services.virtualboxHost.enable = true;
# The NixOS release to be compatible with for stateful data such as databases.
system.stateVersion = "15.09";
}