generation 503 25.11.20250714.62e0f05

This commit is contained in:
2025-08-27 20:04:34 -04:00
parent ac0a9dba51
commit adb0a25816
7 changed files with 90 additions and 40 deletions

View File

@@ -12,7 +12,7 @@
];
config = {
networking.hostName = "server"; # Define your hostname.
networking.hostName = "server1"; # Define your hostname.
res = "2560x1440";
home-manager = {

View File

@@ -0,0 +1,36 @@
{
config,
pkgs,
lib,
...
}: {
imports = [
./hardware-configuration.nix
../../system/system.nix
../meta.nix
../../extras/ssh.nix
];
config = {
networking.hostName = "server2"; # Define your hostname.
res = "2560x1440";
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
backupFileExtension = "backup";
users.synchronous.imports = [../../home/home.nix];
};
# Bootloader.
# boot.loader.grub.enable = true;
# boot.loader.grub.device = "/dev/nvme0n1";
# boot.loader.grub.useOSProber = true;
# boot.loader.grub.version = 2;
# services.logind.lidSwitchExternalPower = "ignore";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.grub.enable = false;
};
}

View File

@@ -13,7 +13,7 @@
];
config = {
networking.hostName = "server-gpu"; # Define your hostname.
networking.hostName = "server3-gpu"; # Define your hostname.
res = "2560x1440";
home-manager = {