summaryrefslogtreecommitdiff
path: root/host
diff options
context:
space:
mode:
Diffstat (limited to 'host')
-rw-r--r--host/obelix.nix15
-rw-r--r--host/software/desktop/default.nix10
2 files changed, 13 insertions, 12 deletions
diff --git a/host/obelix.nix b/host/obelix.nix
index c922cea..583fbde 100644
--- a/host/obelix.nix
+++ b/host/obelix.nix
@@ -10,18 +10,19 @@
loader.grub = {
enable = true;
version = 2;
- device = "/dev/sdb";
+ device = "/dev/sda";
extraConfig = ''
set gfxpayload=1920x1200x32
'';
};
- initrd.luks.devices = [ {
- name = "root";
- device = "/dev/disk/by-uuid/6205da24-b1b2-402c-b175-4036e678dea9";
- preLVM = true;
- allowDiscards = true;
- } ];
+ initrd.luks.devices = {
+ root = {
+ device = "/dev/disk/by-uuid/6205da24-b1b2-402c-b175-4036e678dea9";
+ preLVM = true;
+ allowDiscards = true;
+ };
+ };
};
networking = {
diff --git a/host/software/desktop/default.nix b/host/software/desktop/default.nix
index 030e1b1..f18d3fa 100644
--- a/host/software/desktop/default.nix
+++ b/host/software/desktop/default.nix
@@ -30,13 +30,13 @@
layout = "de";
xkbOptions = "caps:escape";
- displayManager.slim = {
+ displayManager.lightdm = {
enable = true;
- autoLogin = true;
- defaultUser = "common";
+ autoLogin = {
+ enable = true;
+ user = "common";
+ };
};
-
- desktopManager.default = "none";
};
};