Add laptop nix config, move H0615 home setup to common ukaea home setup to be shared across both devices
This commit is contained in:
parent
553131d9e0
commit
7b35953772
|
@ -22,7 +22,7 @@
|
||||||
services.xserver.displayManager.autoLogin.user = "elitherl";
|
services.xserver.displayManager.autoLogin.user = "elitherl";
|
||||||
|
|
||||||
# Set up home manager for user
|
# Set up home manager for user
|
||||||
home-manager.users.elitherl = import ./home-manager/H0615-elitherl.nix;
|
home-manager.users.elitherl = import ./home-manager/ukaea-elitherl.nix;
|
||||||
|
|
||||||
#services.jupyter = {
|
#services.jupyter = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
|
|
26
nixos/J0162-elitherl.nix
Normal file
26
nixos/J0162-elitherl.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./common.nix
|
||||||
|
./locales/en_GB.nix
|
||||||
|
./desktop/plasma.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;
|
||||||
|
}
|
Loading…
Reference in a new issue