mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
feat: upload for wifey
This commit is contained in:
parent
8585f1749f
commit
cf9ec64e69
20 changed files with 1238 additions and 771 deletions
|
|
@ -11,6 +11,9 @@ _: let
|
|||
]
|
||||
++ (with tree.nixos.profiles; [
|
||||
server
|
||||
])
|
||||
++ (with tree.nixos.servers; [
|
||||
mail
|
||||
]);
|
||||
|
||||
boot = {
|
||||
|
|
@ -40,13 +43,25 @@ _: let
|
|||
];
|
||||
|
||||
networking = {
|
||||
interfaces.ens18.ipv4.addresses = [
|
||||
{
|
||||
address = "154.12.117.50";
|
||||
prefixLength = 27;
|
||||
}
|
||||
];
|
||||
interfaces.ens18 = {
|
||||
ipv4.addresses = [
|
||||
{
|
||||
address = "154.12.117.50";
|
||||
prefixLength = 27;
|
||||
}
|
||||
];
|
||||
ipv6.addresses = [
|
||||
{
|
||||
address = "2602:ffd5:1:301::1a";
|
||||
prefixLength = 64;
|
||||
}
|
||||
];
|
||||
};
|
||||
defaultGateway = "154.12.117.33";
|
||||
defaultGateway6 = {
|
||||
address = "2602:ffd5:1:100::1";
|
||||
interface = "ens18";
|
||||
};
|
||||
nameservers = [
|
||||
"1.1.1.1"
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue