26 lines
408 B
Nix
26 lines
408 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
home = {
|
|
language.base = "de_DE.UTF-8";
|
|
stateVersion = "23.05";
|
|
packages = with pkgs; [
|
|
firefox
|
|
alacritty
|
|
gnome-session
|
|
gnome-control-center
|
|
];
|
|
keyboard.layout = "de";
|
|
keyboard.variant = "nodeadkeys";
|
|
};
|
|
|
|
xsession = {
|
|
enable = true;
|
|
windowManager.command = "${pkgs.gnome-session}/bin/gnome-session";
|
|
};
|
|
}
|