diff options
author | tv <tv@shackspace.de> | 2015-08-28 21:54:35 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-08-28 21:54:35 +0200 |
commit | e5ecd75ac266a77c31790e52c2ea000574be9e22 (patch) | |
tree | eecdc35c4a8f257d86178f6eb864c9404a2f1aa7 /makefu/2configs/base-gui.nix | |
parent | 62865ae6ae46e006cea7ee80b931fc5be27d3449 (diff) | |
parent | ecae9b59753c13ea5bff57a6f7c44086c77844d6 (diff) |
Merge remote-tracking branch 'uriel/master'
Diffstat (limited to 'makefu/2configs/base-gui.nix')
-rw-r--r-- | makefu/2configs/base-gui.nix | 30 |
1 files changed, 12 insertions, 18 deletions
diff --git a/makefu/2configs/base-gui.nix b/makefu/2configs/base-gui.nix index 55fcd6baa..6896a66dc 100644 --- a/makefu/2configs/base-gui.nix +++ b/makefu/2configs/base-gui.nix @@ -1,11 +1,15 @@ { config, lib, pkgs, ... }: ## -# of course this name is a lie - it prepares a GUI environment close to my -# current configuration. +# of course this name is a lie +# - it prepares a GUI environment close to my +# current configuration,specifically: # -# autologin with mainUser into awesome -## +# * autologin with mainUser into awesome +# * audio +# * terminus font # +# if this is not enough, check out main-laptop.nix + with lib; let mainUser = config.krebs.build.user.name; @@ -28,14 +32,6 @@ in displayManager.auto.user = mainUser; desktopManager.xterm.enable = false; }; - services.redshift = { - enable = true; - latitude = "48.7"; - longitude = "9.1"; - }; - -## FONTS -# TODO: somewhere else? i18n.consoleFont = "Lat2-Terminus16"; @@ -49,14 +45,12 @@ in environment.systemPackages = with pkgs;[ xlockmore rxvt_unicode-with-plugins - vlc firefox - chromium ]; - # TODO: use mainUser - users.extraUsers.makefu.extraGroups = [ "audio" ]; + users.extraUsers.${mainUser}.extraGroups = [ "audio" ]; + hardware.pulseaudio = { - enable = true; - # systemWide = true; + enable = true; + # systemWide = true; }; } |