stockholm/tv/1systems/xu/config.nix

158 lines
3.3 KiB
Nix
Raw Normal View History

2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2017-08-01 20:37:41 +00:00
{ config, pkgs, ... }: {
2015-10-29 00:11:44 +00:00
krebs.build.host = config.krebs.hosts.xu;
imports = [
<stockholm/tv>
<stockholm/tv/2configs/hw/x220.nix>
<stockholm/tv/2configs/exim-retiolum.nix>
<stockholm/tv/2configs/gitconfig.nix>
<stockholm/tv/2configs/gitrepos.nix>
<stockholm/tv/2configs/mail-client.nix>
<stockholm/tv/2configs/man.nix>
<stockholm/tv/2configs/nginx/krebs-pages.nix>
<stockholm/tv/2configs/nginx/public_html.nix>
2017-10-26 23:35:04 +00:00
<stockholm/tv/2configs/ppp.nix>
<stockholm/tv/2configs/pulse.nix>
<stockholm/tv/2configs/retiolum.nix>
<stockholm/tv/2configs/binary-cache>
2017-09-19 18:04:22 +00:00
<stockholm/tv/2configs/br.nix>
2018-10-07 08:17:21 +00:00
<stockholm/tv/2configs/xp-332.nix>
<stockholm/tv/2configs/xserver>
2022-01-12 13:59:14 +00:00
<stockholm/tv/2configs/xsessions>
2019-01-07 14:32:43 +00:00
<stockholm/tv/2configs/xserver/xkiller.nix>
2015-10-29 00:11:44 +00:00
{
environment.systemPackages = with pkgs; [
# root
cryptsetup
# tv
bc
bind # dig
2017-06-18 16:55:07 +00:00
brain
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
jq
2017-06-18 14:22:32 +00:00
krebszones
2015-10-29 00:11:44 +00:00
mkpasswd
netcat
2016-10-27 16:36:17 +00:00
netcup
2015-10-29 00:11:44 +00:00
nmap
p7zip
2022-05-31 17:14:09 +00:00
(pkgs.pass.withExtensions (ext: [
ext.pass-otp
]))
2016-06-03 13:05:47 +00:00
q
2015-10-29 00:11:44 +00:00
qrencode
2017-04-27 19:40:48 +00:00
texlive.combined.scheme-full
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
#xdotool
#xkill
#xl2tpd
#xsel
2015-11-07 18:27:47 +00:00
unison
2015-10-29 00:11:44 +00:00
];
}
];
boot.initrd.luks.devices.xuca.device = "/dev/sda2";
2015-10-29 00:11:44 +00:00
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";
};
};
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
];
networking.wireless.enable = true;
2015-10-29 00:11:44 +00:00
#services.bitlbee.enable = true;
#services.tor.client.enable = true;
#services.tor.enable = true;
# The NixOS release to be compatible with for stateful data such as databases.
system.stateVersion = "15.09";
}