Fix fifi's node config
This commit is contained in:
parent
7b6e8c49f1
commit
ca436c49a3
1 changed files with 4 additions and 5 deletions
|
|
@ -4,22 +4,21 @@
|
||||||
config.filouterie.hostName = "fifi";
|
config.filouterie.hostName = "fifi";
|
||||||
|
|
||||||
# Setting up wifi networking and static ip (out of DHCP range 50-200)
|
# Setting up wifi networking and static ip (out of DHCP range 50-200)
|
||||||
networking.wireless.enable = true;
|
config.networking.wireless.enable = true;
|
||||||
networking.wireless.networks = {
|
config.networking.wireless.networks = {
|
||||||
"Atalante_5G" = {
|
"Atalante_5G" = {
|
||||||
pskRaw = "1bd70fc8bb0c9834dab5f10a1f2f3b84a6444e6605c5e11419b95e81f4e8fac8";
|
pskRaw = "1bd70fc8bb0c9834dab5f10a1f2f3b84a6444e6605c5e11419b95e81f4e8fac8";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.interfaces.wlp3s0.ipv4.addresses = [
|
config.networking.interfaces.wlp3s0.ipv4.addresses = [
|
||||||
{
|
{
|
||||||
address = "192.168.1.222";
|
address = "192.168.1.222";
|
||||||
prefixLength = 24;
|
prefixLength = 24;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.defaultGateway = "192.168.1.1";
|
config.networking.defaultGateway = "192.168.1.1";
|
||||||
|
|
||||||
|
|
||||||
# Setting up bootloader in UEFI mode
|
# Setting up bootloader in UEFI mode
|
||||||
config.boot.loader.grub.devices = [ "nodev"];
|
config.boot.loader.grub.devices = [ "nodev"];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue