27 lines
682 B
Nix
27 lines
682 B
Nix
{ pkgs, ... }:
|
||
|
||
{
|
||
imports = [
|
||
./common.nix
|
||
./locales/en_GB.nix
|
||
./desktop/xfce.nix
|
||
];
|
||
|
||
networking.hostName = "J0162"; # Define your hostname.
|
||
|
||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||
users.users.elitherl = {
|
||
isNormalUser = true;
|
||
description = "Evie Litherland-Smith";
|
||
extraGroups = [ "networkmanager" "wheel" ];
|
||
shell = pkgs.fish;
|
||
};
|
||
|
||
# Enable automatic login for the user.
|
||
services.xserver.displayManager.autoLogin.enable = true;
|
||
services.xserver.displayManager.autoLogin.user = "elitherl";
|
||
|
||
# Set up home manager for user
|
||
home-manager.users.elitherl = import ./home-manager/ukaea-elitherl.nix;
|
||
}
|