diff options
author | lassulus <lass@blue.r> | 2018-06-14 21:59:03 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-06-14 21:59:03 +0200 |
commit | c19baeee138f9455ef570e609c045d312d6cc0f4 (patch) | |
tree | 4432cc57031139006e0931efa14e3276d2e8a72a | |
parent | e80eae2eb55dcae512a297499d5c9864b2fea387 (diff) | |
parent | 9dadc86d9cfb24fb9d1a7e4cdeec626331339982 (diff) |
Merge remote-tracking branch 'onondaga-http/master'
-rw-r--r-- | nin/1systems/axon/config.nix | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/nin/1systems/axon/config.nix b/nin/1systems/axon/config.nix index 483a4f84b..5e81afdbd 100644 --- a/nin/1systems/axon/config.nix +++ b/nin/1systems/axon/config.nix @@ -59,7 +59,11 @@ with lib; # nin config time.timeZone = "Europe/Berlin"; - services.xserver.enable = true; + services.xserver = { + enable = true; + + displayManager.lightdm.enable = true; + }; networking.networkmanager.enable = true; #networking.wireless.enable = true; @@ -76,12 +80,19 @@ with lib; #nixpkgs.config.steam.java = true; environment.systemPackages = with pkgs; [ + atom + chromium firefox git + htop + keepassx lmms networkmanagerapplet + openvpn python + ruby steam + taskwarrior thunderbird vim virtmanager @@ -109,7 +120,7 @@ with lib; Control + p ''; in { - enable = true; + enable = true; extraSessionCommands = '' ${pkgs.xbindkeys}/bin/xbindkeys -f ${xbindConfig} ''; |