2015-08-02 21:12:38 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2015-08-07 10:10:02 +00:00
|
|
|
##
|
2015-08-23 00:48:35 +00:00
|
|
|
# of course this name is a lie
|
|
|
|
# - it prepares a GUI environment close to my
|
|
|
|
# current configuration,specifically:
|
2015-08-07 10:10:02 +00:00
|
|
|
#
|
2015-08-23 00:48:35 +00:00
|
|
|
# * autologin with mainUser into awesome
|
|
|
|
# * audio
|
|
|
|
# * terminus font
|
2015-08-07 10:10:02 +00:00
|
|
|
#
|
2015-08-23 00:48:35 +00:00
|
|
|
# if this is not enough, check out main-laptop.nix
|
|
|
|
|
2015-12-03 19:37:04 +00:00
|
|
|
|
2015-08-07 10:10:02 +00:00
|
|
|
let
|
|
|
|
mainUser = config.krebs.build.user.name;
|
|
|
|
in
|
2015-08-02 21:12:38 +00:00
|
|
|
{
|
2017-04-17 11:11:32 +00:00
|
|
|
imports = [
|
|
|
|
./urxvtd.nix
|
|
|
|
];
|
|
|
|
|
2015-08-05 13:11:52 +00:00
|
|
|
services.xserver = {
|
|
|
|
enable = true;
|
|
|
|
layout = "us";
|
2015-08-07 10:53:38 +00:00
|
|
|
xkbVariant = "altgr-intl";
|
2017-05-24 14:53:57 +00:00
|
|
|
xkbOptions = "ctrl:nocaps, eurosign:e";
|
2015-08-02 21:12:38 +00:00
|
|
|
|
2015-08-05 13:11:52 +00:00
|
|
|
windowManager = {
|
|
|
|
awesome.enable = true;
|
2019-01-22 08:04:20 +00:00
|
|
|
awesome.noArgb = true;
|
2015-08-05 13:11:52 +00:00
|
|
|
awesome.luaModules = [ pkgs.luaPackages.vicious ];
|
|
|
|
default = "awesome";
|
|
|
|
};
|
|
|
|
|
2015-08-07 10:10:02 +00:00
|
|
|
displayManager.auto.enable = true;
|
|
|
|
displayManager.auto.user = mainUser;
|
2015-08-05 13:11:52 +00:00
|
|
|
desktopManager.xterm.enable = false;
|
|
|
|
};
|
2019-09-25 12:54:33 +00:00
|
|
|
environment.systemPackages = [ pkgs.gnome3.defaultIconTheme ];
|
2016-02-11 16:06:50 +00:00
|
|
|
# lid switch is handled via button presses
|
2019-09-25 12:54:55 +00:00
|
|
|
services.logind.lidSwitch = lib.mkDefault "ignore";
|
2016-04-17 00:03:15 +00:00
|
|
|
makefu.awesome.enable = true;
|
2015-08-09 12:53:24 +00:00
|
|
|
i18n.consoleFont = "Lat2-Terminus16";
|
|
|
|
|
|
|
|
fonts = {
|
|
|
|
enableCoreFonts = true;
|
|
|
|
enableFontDir = true;
|
2017-03-24 12:02:26 +00:00
|
|
|
enableGhostscriptFonts = true;
|
2015-08-09 12:53:24 +00:00
|
|
|
fonts = [ pkgs.terminus_font ];
|
|
|
|
};
|
|
|
|
|
2018-02-06 10:57:58 +00:00
|
|
|
users.users.${mainUser} = {
|
|
|
|
extraGroups = [ "audio" ];
|
|
|
|
packages = with pkgs;[
|
|
|
|
pavucontrol
|
|
|
|
xlockmore
|
|
|
|
rxvt_unicode-with-plugins
|
|
|
|
];
|
|
|
|
};
|
2015-08-23 00:48:35 +00:00
|
|
|
|
2015-08-02 21:12:38 +00:00
|
|
|
hardware.pulseaudio = {
|
2015-08-23 00:48:35 +00:00
|
|
|
enable = true;
|
2017-09-29 19:35:17 +00:00
|
|
|
# systemWide = true;
|
2015-08-02 21:12:38 +00:00
|
|
|
};
|
2015-12-16 10:40:18 +00:00
|
|
|
services.xserver.displayManager.sessionCommands = let
|
|
|
|
xdefaultsfile = pkgs.writeText "Xdefaults" ''
|
|
|
|
cat |derp <<EOF
|
|
|
|
XTerm*background: black
|
|
|
|
XTerm*foreground: white
|
2018-10-21 21:21:58 +00:00
|
|
|
XTerm*FaceName : xft:Terminus:pixelsize=12
|
2015-12-16 10:40:18 +00:00
|
|
|
|
|
|
|
URxvt*termName: rxvt
|
2016-04-03 19:43:02 +00:00
|
|
|
URxvt*saveLines: 10000
|
|
|
|
URxvt*loginShell: false
|
|
|
|
URxvt.scrollBar : false
|
2015-12-16 10:40:18 +00:00
|
|
|
URxvt*scrollBar_right: false
|
|
|
|
URxvt*borderLess: false
|
|
|
|
URxvt.foreground: white
|
|
|
|
URxvt.background: black
|
|
|
|
URxvt.urgentOnBell: true
|
|
|
|
URxvt.visualBell: false
|
2018-10-21 21:21:58 +00:00
|
|
|
URxvt.font : xft:Terminus:size=12
|
2017-03-31 16:25:54 +00:00
|
|
|
|
2015-12-16 10:40:18 +00:00
|
|
|
|
|
|
|
! blue
|
|
|
|
URxvt*color4: #268bd2
|
|
|
|
|
|
|
|
|
|
|
|
URxvt.perl-ext: default,url-select
|
|
|
|
URxvt.keysym.M-u: perl:url-select:select_next
|
2017-03-01 14:45:50 +00:00
|
|
|
URxvt.url-select.launcher: firefox -new-tab
|
2015-12-16 10:40:18 +00:00
|
|
|
URxvt.url-select.underline: true
|
|
|
|
URxvt.searchable-scrollback: CM-s
|
|
|
|
'';
|
2016-08-02 09:49:24 +00:00
|
|
|
in ''
|
|
|
|
cat ${xdefaultsfile} | xrdb -merge
|
|
|
|
${pkgs.xorg.xhost}/bin/xhost +local:
|
|
|
|
'';
|
2015-08-02 21:12:38 +00:00
|
|
|
}
|