29 lines
622 B
Nix
29 lines
622 B
Nix
|
{pkgs, ...}: {
|
||
|
imports = [
|
||
|
./home
|
||
|
./common.nix
|
||
|
./locales/en_GB.nix
|
||
|
./services/Legion.nix
|
||
|
];
|
||
|
|
||
|
networking = {
|
||
|
hostName = "Legion"; # Define your hostname.
|
||
|
nameservers = ["9.9.9.9"];
|
||
|
firewall = {enable = true;};
|
||
|
};
|
||
|
|
||
|
users.users.xenia = {
|
||
|
isNormalUser = true;
|
||
|
description = "Evie Litherland-Smith";
|
||
|
extraGroups = ["networkmanager" "wheel"];
|
||
|
shell = pkgs.fish;
|
||
|
openssh.authorizedKeys.keys = import ./auth/authorized_keys.nix;
|
||
|
};
|
||
|
home-manager.users.xenia = import ./home/Legion/xenia.nix;
|
||
|
|
||
|
system.autoUpgrade = {
|
||
|
enable = true;
|
||
|
allowReboot = false;
|
||
|
};
|
||
|
}
|