diff options
author | makefu <github@syntax-fehler.de> | 2018-06-24 23:43:26 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-06-24 23:43:26 +0200 |
commit | 311cb0f96ea6bc60367bff2996c239e41ef2e11e (patch) | |
tree | 2397a408e23d4c9ac5140782d730082edf39fb79 /nin/1systems/axon/config.nix | |
parent | d633848269a6ef23bb1ad7120c148070cd2f511d (diff) | |
parent | d2d88115572b1b6dfb2e430a238fb2480fbb2fcd (diff) |
Merge branch 'master' of prism:stockholm
Diffstat (limited to 'nin/1systems/axon/config.nix')
-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 483a4f8..5e81afd 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} ''; |