27 lines
645 B
Nix
27 lines
645 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../../common.nix
|
|
../../hardware/audio.nix
|
|
../../hardware/bluetooth.nix
|
|
../../locales/en_GB.nix
|
|
../../desktop/hyprland.nix
|
|
../../services/syncthing/J0162.nix
|
|
];
|
|
|
|
networking.hostName = "J0162"; # Define your hostname.
|
|
system.autoUpgrade = {
|
|
enable = false;
|
|
allowReboot = false;
|
|
};
|
|
environment.etc."ppp/options".text = ''
|
|
ipcp-accept-remote
|
|
'';
|
|
users.users.elitherl = {
|
|
isNormalUser = true;
|
|
description = "Evie Litherland-Smith";
|
|
extraGroups = ["networkmanager" "wheel"];
|
|
shell = pkgs.fish;
|
|
};
|
|
home-manager.users.elitherl = import ./elitherl.nix;
|
|
}
|