summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lass@aidsballs.de>2016-07-08 13:38:50 +0200
committerlassulus <lass@aidsballs.de>2016-07-08 13:38:50 +0200
commit59b318e84dd15e9e2268247a844c233919105964 (patch)
treeae1eb4dccf85846adc58a6e7867cc302f7f8bdbb
parent30e965fe13092413ca20343eac5accb66103c7ab (diff)
l 1 helios: use gnome3 as desktopManager
-rw-r--r--lass/1systems/helios.nix34
1 files changed, 32 insertions, 2 deletions
diff --git a/lass/1systems/helios.nix b/lass/1systems/helios.nix
index 51d2afe84..fe8039d9c 100644
--- a/lass/1systems/helios.nix
+++ b/lass/1systems/helios.nix
@@ -1,10 +1,11 @@
{ config, pkgs, ... }:
with builtins;
+with config.krebs.lib;
+
{
imports = [
../.
- ../2configs/baseX.nix
../2configs/exim-retiolum.nix
../2configs/browsers.nix
../2configs/programs.nix
@@ -12,6 +13,36 @@ with builtins;
../2configs/pass.nix
../2configs/fetchWallpaper.nix
../2configs/backups.nix
+
+ #{
+ # # conflicting stuff with gnome setup
+ # # TODO: fix this
+ # imports = [
+ # ../2configs/baseX.nix
+ # ];
+ # networking.wireless.enable = true;
+ #}
+ {
+ # gnome3 for suja
+ imports = [
+ ../2configs/default.nix
+ ];
+ services.xserver.enable = true;
+ services.xserver.desktopManager.gnome3.enable = true;
+ users.users.suja = {
+ uid = genid "suja";
+ home = "/home/suja";
+ group = "users";
+ createHome = true;
+ useDefaultShell = true;
+ extraGroups = [
+ ];
+ };
+ environment.systemPackages = with pkgs; [
+ firefox
+ chromium
+ ];
+ }
#{
# users.extraUsers = {
# root = {
@@ -33,7 +64,6 @@ with builtins;
krebs.build.host = config.krebs.hosts.helios;
- networking.wireless.enable = true;
hardware.enableAllFirmware = true;
nixpkgs.config.allowUnfree = true;