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