diff options
author | lassulus <lass@aidsballs.de> | 2015-08-23 16:53:38 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-08-23 16:53:38 +0200 |
commit | 65a2d75b140e7eca79a8084ef331b1d4db8f07f5 (patch) | |
tree | 0d1cd09fe24c1eacaf550859a44ab1fa1d686e0e /makefu/2configs/base-gui.nix | |
parent | 8247a5a618d6b0fc3688077fe36508b8bf88dcc3 (diff) | |
parent | dce1ad91445297ecc122f968a12339438eabaa63 (diff) |
Merge branch 'makefu'
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; }; } |