nixos/nixos/J0162-elitherl.nix

27 lines
682 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ 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;
}