formatting and enable wol
Some checks failed
/ Check formatting (push) Has been cancelled

This commit is contained in:
Ittihadyya 2025-01-10 07:25:01 +02:00
parent 2c9c995c51
commit d713299ed8
2 changed files with 11 additions and 8 deletions

View file

@ -6,11 +6,11 @@
ps ps
wget wget
libqalculate libqalculate
magic-wormhole magic-wormhole
]; ];
programs = { programs = {
# For the love of Fucking please keep them in alphabetical order to soothe my brain # For the love of Fucking please keep them in alphabetical order to soothe my brain
btop = { btop = {
enable = true; enable = true;
}; };
emacs = { emacs = {

View file

@ -97,12 +97,15 @@
{config, ...}: { {config, ...}: {
networking.resolvconf.enable = false; networking.resolvconf.enable = false;
networking = { networking = {
interfaces.eth0.ipv4.addresses = [ interfaces.eth0 = {
{ wakeOnLan.enable = true;
address = "192.168.88.225"; ipv4.addresses = [
prefixLength = 24; {
} address = "192.168.88.225";
]; prefixLength = 24;
}
];
};
defaultGateway = { defaultGateway = {
address = "192.168.88.1"; address = "192.168.88.1";
interface = "eth0"; interface = "eth0";