first running config (fingers crossed)
This commit is contained in:
parent
0c6bb20db2
commit
ba8862cb0c
3 changed files with 6 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
imports = [ ];
|
imports = [ ];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules =
|
boot.initrd.availableKernelModules =
|
||||||
[ "ata_piix" "sr_mod" "xen_bklfront" ];
|
[ "ata_piix" "sr_mod" "xen_blkfront" ];
|
||||||
boot.kernelModules = [ ];
|
boot.kernelModules = [ ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
imports = [ ];
|
imports = [ ];
|
||||||
networking = {
|
networking = {
|
||||||
interfaces.enX0.ipv4.addresses = [ {
|
interfaces.enX0.ipv4.addresses = [ {
|
||||||
addresses = "192.168.0.28";
|
address = "192.168.0.28";
|
||||||
prefixLength = 16;
|
prefixLength = 16;
|
||||||
} ];
|
} ];
|
||||||
defaultGateway = "192.168.0.155";
|
defaultGateway = "192.168.0.155";
|
||||||
|
|
4
nixos/roles/nix_keys.nix
Normal file
4
nixos/roles/nix_keys.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{lib, ...} :
|
||||||
|
nix.settings.trusted-public-keys = [
|
||||||
|
"nerflap2-1:pDZCg0oo9PxNQxwVSQSvycw7WXTl53PGvVeZWvxuqJc="
|
||||||
|
];
|
Loading…
Reference in a new issue