nixos/machines/J0162/default.nix

31 lines
750 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{pkgs, ...}: {
imports = [
../../common.nix
../../hardware/audio.nix
../../hardware/bluetooth.nix
../../locales/en_GB.nix
../../desktop/plasma.nix
../../services/syncthing/J0162.nix
];
networking.hostName = "J0162"; # Define your hostname.
services.xserver.displayManager = {
defaultSession = "plasma";
autoLogin.user = "elitherl";
};
system.autoUpgrade = {
enable = false;
allowReboot = false;
};
environment.etc."ppp/options".text = ''
ipcp-accept-remote
'';
users.users.elitherl = {
isNormalUser = true;
description = "Evie Litherland-Smith";
2023-05-17 17:10:18 +01:00
extraGroups = ["networkmanager" "wheel"];
shell = pkgs.fish;
};
home-manager.users.elitherl = import ./elitherl.nix;
}