Compare commits

...

2 Commits

Author SHA1 Message Date
61df6001ec updated inputs 2021-05-06 00:43:23 +00:00
211e9670b0 changed nameservers 2021-05-05 23:59:48 +00:00
3 changed files with 22 additions and 12 deletions

View File

@ -36,11 +36,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1618976009, "lastModified": 1619336929,
"narHash": "sha256-G5Z2Keob1pWrrdUqH2MYv15NKitklb4/A3ZdSp+3f/M=", "narHash": "sha256-joIC2D26jtSbHodR/o8r+5T9XL2hXs6NIp5mVyA4JOc=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "241d8300b2746c1db715eaf8d64748990cd0bb7a", "rev": "f7540d6c27704ec0fe56ecc8b2a9b663181850b0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -51,12 +51,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1619132512, "lastModified": 1619057301,
"narHash": "sha256-Ag0SPRotWMfekMlCrGqaLIvk92Xl9+WL2PKKYY447jU=", "narHash": "sha256-1Y1nCnwGSQHM76KGIhz+8tOAGOT3wlP+dKjwoyQXCtg=",
"owner": "NixOS", "path": "/nix/store/l41q84w6a892w0p5h8x6x5xnfpkrqkir-source",
"repo": "nixpkgs", "rev": "d235056d6d6dcbd2999bd55fd120d831d4df6304",
"rev": "603620a6308c0c8f00f4edef67a6a0a41a3c6f36", "type": "path"
"type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "id": "nixpkgs",
@ -65,11 +64,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1619057301, "lastModified": 1620162462,
"narHash": "sha256-1Y1nCnwGSQHM76KGIhz+8tOAGOT3wlP+dKjwoyQXCtg=", "narHash": "sha256-6wQPEXPnwBklHoRIuEPdc00FN8HfaFX1cZ7gxv16sd8=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d235056d6d6dcbd2999bd55fd120d831d4df6304", "rev": "39e6bf76474ce742eb027a88c4da6331f0a1526f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -30,6 +30,9 @@
# disk partitions and such (plus more that needs to be taken out) # disk partitions and such (plus more that needs to be taken out)
(import ./hardware/iwakura) (import ./hardware/iwakura)
# sane nameservers because aussie gov blocks everything
(import ./modules/nameservers)
# community settings for this laptop # community settings for this laptop
nixos-hardware.nixosModules.lenovo-thinkpad-t420 nixos-hardware.nixosModules.lenovo-thinkpad-t420
nixos-hardware.nixosModules.common-pc-laptop-ssd nixos-hardware.nixosModules.common-pc-laptop-ssd

View File

@ -0,0 +1,8 @@
{
networking.nameservers = [
"37.235.1.174"
"37.235.1.177"
"172.104.237.57"
"172.104.49.100"
];
}