Compare commits
2 commits
ae332475fb
...
16bec66f95
Author | SHA1 | Date | |
---|---|---|---|
16bec66f95 | |||
e76bfacc62 |
4 changed files with 24 additions and 4 deletions
|
@ -19,8 +19,12 @@
|
|||
git
|
||||
podman-tui
|
||||
];
|
||||
programs.mtr.enable = true;
|
||||
programs.zsh.enable = true;
|
||||
security.sudo.wheelNeedsPassword = false;
|
||||
security.sudo-rs = {
|
||||
enable = true;
|
||||
wheelNeedsPassword = false;
|
||||
};
|
||||
networking.firewall.enable = false;
|
||||
services.openssh.enable = true;
|
||||
virtualisation.containers.enable = true;
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
Welcome to wolfgirl.systems!
|
||||
Join our Matrix chat: #wolfgirlsgen:envs.net
|
||||
Latest news
|
||||
* Flakes now enabled
|
||||
* Web hosting now available, contact an admin to enable
|
||||
* Stella: Flakes now enabled
|
||||
* Stella: Web hosting now available, contact an admin to enable
|
||||
* Stella: ipv6 enabled
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -111,4 +111,11 @@
|
|||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBii/5J858CvRPBYjgCB96WKH3E/1z1NA77VOZbIm6YA kitsu_@kitsu-laptop"
|
||||
];
|
||||
};
|
||||
users.users.nad2040 = {
|
||||
uid = 2013;
|
||||
isNormalUser = true;
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC/RsyBWkCZuVUC5ADDRn9b/KM8vC3h3dPAEnCMOhLVR pubNIX"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -27,18 +27,26 @@
|
|||
networking = {
|
||||
hostName = "stella";
|
||||
search = ["wolfgirl.systems"];
|
||||
nameservers = [ "9.9.9.10" "149.112.112.10" ];
|
||||
nameservers = [ "9.9.9.10" "149.112.112.10" "2620:fe::10" "2620:fe::fe:10"];
|
||||
dhcpcd.enable = false;
|
||||
interfaces = {
|
||||
enp1s0.ipv4.addresses = [{
|
||||
address = "198.8.59.4";
|
||||
prefixLength = 27;
|
||||
}];
|
||||
enp1s0.ipv6.addresses = [{
|
||||
address = "2a0f:85c1:31:e11a::";
|
||||
prefixLength = 48;
|
||||
}];
|
||||
};
|
||||
defaultGateway = {
|
||||
address = "198.8.59.1";
|
||||
interface = "enp1s0";
|
||||
};
|
||||
defaultGateway6 = {
|
||||
address = "2a0f:85c1:31::";
|
||||
interface = "enp1s0";
|
||||
};
|
||||
};
|
||||
|
||||
time.timeZone = "America/New_York";
|
||||
|
|
Loading…
Reference in a new issue