-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented DuckDNS module. Renamed avalon host to atlas.
- Loading branch information
1 parent
3742b8f
commit cdfc98b
Showing
18 changed files
with
319 additions
and
60 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ config, lib, pkgs, ... } @ args: let | ||
|
||
inherit (lib) mkDefault; | ||
|
||
in { | ||
|
||
modules.networking.duckdns = { | ||
|
||
enable = false; | ||
domains = [ | ||
|
||
{ | ||
name = "the name of the duckdns domain"; | ||
token = "fill this when secrets are ready."; | ||
} | ||
]; | ||
}; | ||
|
||
networking = { | ||
|
||
wireless.enable = false; | ||
hostName = "atlas"; | ||
|
||
defaultGateway = "192.168.25.1"; | ||
nameservers = [ "1.1.1.1" "1.0.0.1" ]; | ||
|
||
interfaces = { | ||
|
||
eno2.ipv4.addresses = [ | ||
|
||
{ | ||
address = "192.168.25.50"; | ||
prefixLength = 24; | ||
} | ||
]; | ||
}; | ||
|
||
}; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,4 @@ in { | |
|
||
# Makes the given value unless the given predicate is true. | ||
mkUnless = pred: val: (mkIf (! pred) val); | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[ | ||
|
||
./networking/duck-dns | ||
./tools/onepassword | ||
] |
Oops, something went wrong.