dregil: Activote xsession for anne
This commit is contained in:
parent
20856e1c65
commit
e30fe7eef8
1 changed files with 14 additions and 8 deletions
|
|
@ -1,26 +1,32 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.anne = {
|
||||
let username = "anne";
|
||||
in {
|
||||
users.users.${username} = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "input" ];
|
||||
description = "Anne Kobjolke";
|
||||
home = "/home/anne";
|
||||
home = "/home/${username}";
|
||||
hashedPassword =
|
||||
"$6$Lq3kAyI7Oh3uvf9T$lxE1V9adw1lqjRT0tvCdj17zUz.nJkqkMSA8Y6ipuBIHoZqJKJcQPLby/BWdDvzcmCbyEOtA7grToclNnbV49/";
|
||||
};
|
||||
|
||||
home-manager.users.anne = {
|
||||
home-manager.users.${username} = {
|
||||
home = {
|
||||
username = "anne";
|
||||
homeDirectory = config.users.users.anne.home;
|
||||
username = "${username}";
|
||||
homeDirectory = config.users.users.${username}.home;
|
||||
language.base = "de_DE.UTF-8";
|
||||
language.messages = "de_DE.UTF-8";
|
||||
language.time = "de_DE.UTF-8";
|
||||
language.paper = "de_DE.UTF-8";
|
||||
stateVersion = "23.05";
|
||||
packages = with pkgs; [ firefox alacritty ];
|
||||
keyboard.type = "de";
|
||||
keyboard.layout = "de";
|
||||
keyboard.variant = "nodeadkeys";
|
||||
};
|
||||
|
||||
xsession = {
|
||||
enable = true;
|
||||
windowManager.command = "${pkgs.gnome.gnome-session}/bin/gnome-session";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue