stockholm/lass/2configs/baseX.nix

119 lines
2.3 KiB
Nix
Raw Normal View History

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