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 | 9dadc86d9cfb24fb9d1a7e4cdeec626331339982 (patch) | |
tree | aac73b985517a8dcdde8ae74066df0f44285bff8 /nin | |
parent | 006a3174eccecfee96e7b4fb9c818043a0334535 (diff) |
nin axon: add login manager & some programsprism/nin
Diffstat (limited to 'nin')
-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} ''; |