diff options
author | nin <nin@c-base.org> | 2018-06-14 20:22:33 +0200 |
---|---|---|
committer | nin <nin@c-base.org> | 2018-06-14 20:22:33 +0200 |
commit | b74ea0ee6a44a4c3e2f8f42bd119c75758168ad6 (patch) | |
tree | b519b97d3feee643c81f5e859d1270f3ddce67c7 | |
parent | d633848269a6ef23bb1ad7120c148070cd2f511d (diff) |
nin axon: add login manager & some programs
-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} ''; |