(desktop) Gen 494: reformatted several files using alejandra

This commit is contained in:
pagedMov
2024-10-15 20:16:32 -04:00
parent 1441353258
commit bd1add14bb
98 changed files with 6440 additions and 3256 deletions

View File

@@ -1,10 +1,8 @@
{ pkgs, ... }:
{
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
loader.systemd-boot.configurationLimit = 10;
kernelPackages = pkgs.linuxPackages_latest;
};
{pkgs, ...}: {
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
loader.systemd-boot.configurationLimit = 10;
kernelPackages = pkgs.linuxPackages_latest;
};
}

View File

@@ -1,18 +1,18 @@
{ host, ... }:
{
networking = {
networkmanager.enable = true;
hostName = if (host == "desktop") then
"argon" else "mercury";
hosts = {
"192.168.1.163" = [ "glasshaus" ];
"192.168.1.111" = [ "argon" ];
"192.168.1.223" = [ "mercury" ];
};
firewall = {
enable = true;
allowedTCPPorts = [ 30000 ];
};
};
{host, ...}: {
networking = {
networkmanager.enable = true;
hostName =
if (host == "desktop")
then "argon"
else "mercury";
hosts = {
"192.168.1.163" = ["glasshaus"];
"192.168.1.111" = ["argon"];
"192.168.1.223" = ["mercury"];
};
firewall = {
enable = true;
allowedTCPPorts = [30000];
};
};
}