stockholm/lass/2configs/baseX.nix

146 lines
3 KiB
Nix
Raw Normal View History

2015-07-16 15:51:01 +02:00
{ config, pkgs, ... }:
2017-02-16 00:05:38 +01:00
with import <stockholm/lib>;
2015-07-16 15:51:01 +02:00
let
2017-02-16 00:05:38 +01:00
user = config.krebs.build.user;
2015-07-16 15:51:01 +02:00
in {
imports = [
./mpv.nix
2016-06-18 22:01:10 +02:00
./power-action.nix
2017-02-16 00:05:38 +01:00
./copyq.nix
2017-03-04 19:49:39 +01:00
./livestream.nix
./dns-stuff.nix
2017-11-29 15:39:14 +01:00
./urxvt.nix
{
hardware.pulseaudio = {
enable = true;
systemWide = true;
};
security.rtkit.enable = true;
2017-03-07 20:17:23 +01:00
sound.enableOSSEmulation = false;
}
2017-01-10 17:27:07 +01:00
{
krebs.per-user.lass.packages = [
pkgs.sshuttle
];
security.sudo.extraConfig = ''
lass ALL= (root) NOPASSWD:SETENV: ${pkgs.sshuttle}/bin/.sshuttle-wrapped
'';
}
2017-09-19 11:45:33 +02:00
{ #font magic
2017-10-09 13:02:14 +02:00
options.lass.fonts = {
regular = mkOption {
type = types.str;
2017-10-18 19:53:05 +02:00
default = "-*-clean-*-*-*-*-*-*-*-*-*-*-iso10646-1";
2017-10-09 13:02:14 +02:00
};
bold = mkOption {
type = types.str;
2017-10-18 19:53:05 +02:00
default = "-*-clean-*-*-*-*-*-*-*-*-*-*-iso10646-1";
2017-10-09 13:02:14 +02:00
};
italic = mkOption {
type = types.str;
2017-10-18 19:53:05 +02:00
default = "-*-clean-*-*-*-*-*-*-*-*-*-*-iso10646-1";
2017-10-09 13:02:14 +02:00
};
2017-09-19 11:45:33 +02:00
};
config.krebs.xresources.resources.X = ''
2017-11-29 15:39:14 +01:00
*.font: ${config.lass.fonts.regular}
*.boldFont: ${config.lass.fonts.bold}
*.italicFont: ${config.lass.fonts.italic}
'';
2017-09-19 11:45:33 +02:00
}
2015-07-16 15:51:01 +02:00
];
2016-08-05 00:00:27 +02:00
users.extraUsers.mainUser.extraGroups = [ "audio" "video" ];
2015-10-30 18:35:21 +01:00
2015-07-16 15:51:01 +02:00
time.timeZone = "Europe/Berlin";
2017-12-31 02:45:43 +01:00
programs.ssh.startAgent = true;
2017-05-22 17:20:58 +02:00
services.openssh.forwardX11 = true;
2015-07-16 15:51:01 +02:00
services.printing = {
enable = true;
2017-03-02 15:15:25 +01:00
drivers = [
pkgs.foomatic_filters
pkgs.gutenprint
];
2015-07-16 15:51:01 +02:00
};
environment.systemPackages = with pkgs; [
2016-06-11 00:28:09 +02:00
acpi
2017-12-18 18:53:15 +01:00
bank
2016-11-27 15:18:52 +01:00
dic
2015-12-29 20:21:06 +01:00
dmenu
2017-08-21 12:57:36 +02:00
gi
2017-11-29 16:15:10 +01:00
git-preview
2015-12-26 17:30:59 +01:00
gitAndTools.qgit
2017-11-29 16:15:10 +01:00
lm_sensors
mpv-poll
2015-10-05 12:19:25 +02:00
much
2016-12-01 17:10:13 +01:00
ncdu
2017-07-28 18:23:44 +02:00
nix-repl
2016-06-02 12:18:49 +02:00
nmap
2015-12-26 17:30:59 +01:00
pavucontrol
powertop
2015-10-17 20:11:00 +02:00
push
2017-12-03 22:48:49 +01:00
rxvt_unicode_with-plugins
2017-11-12 13:04:42 +01:00
screengrab
2015-12-26 17:30:59 +01:00
slock
sxiv
2018-01-16 00:06:04 +01:00
timewarrior
taskwarrior
2017-11-12 13:04:42 +01:00
termite
2016-04-15 16:19:50 +02:00
xclip
2016-03-15 15:14:22 +01:00
xorg.xbacklight
2016-06-11 00:28:09 +02:00
xorg.xhost
2015-12-26 17:30:59 +01:00
xsel
2016-10-19 14:59:12 +02:00
youtube-tools
2017-11-12 13:04:42 +01:00
yt-next
zathura
2016-12-04 20:40:53 +01:00
2017-11-12 13:04:42 +01:00
cabal2nix
2015-07-16 15:51:01 +02:00
];
2017-10-09 13:02:14 +02:00
fonts.fonts = with pkgs; [
hack-font
hasklig
symbola
xlibs.fontschumachermisc
2017-02-16 00:05:38 +01:00
];
2018-01-18 19:38:56 +01:00
#lass.xserver.enable = true;
2017-02-16 00:05:38 +01:00
services.xserver = {
2018-01-18 19:38:56 +01:00
enable = true;
2017-02-16 00:05:38 +01:00
layout = "us";
2018-01-18 19:38:56 +01:00
display = mkForce 0;
2017-02-16 00:05:38 +01:00
xkbModel = "evdev";
xkbVariant = "altgr-intl";
xkbOptions = "caps:backspace";
2018-01-18 19:38:56 +01:00
displayManager.lightdm.enable = true;
windowManager.default = "xmonad";
windowManager.session = [{
name = "xmonad";
start = ''
${pkgs.xorg.xhost}/bin/xhost +LOCAL:
${pkgs.coreutils}/bin/sleep infinity
'';
}];
};
systemd.user.services.xmonad = {
wantedBy = [ "graphical-session.target" ];
environment = {
DISPLAY = ":${toString config.services.xserver.display}";
RXVT_SOCKET = "%t/urxvtd-socket";
XMONAD_DATA_DIR = "/tmp";
};
serviceConfig = {
SyslogIdentifier = "xmonad";
ExecStart = "${pkgs.xmonad-lass}/bin/xmonad";
ExecStop = "${pkgs.xmonad-lass}/bin/xmonad --shutdown";
};
restartIfChanged = false;
2017-02-16 00:05:38 +01:00
};
2015-07-16 15:51:01 +02:00
krebs.xresources.enable = true;
2017-10-19 18:42:09 +02:00
lass.screenlock.enable = true;
2015-07-16 15:51:01 +02:00
}