generation 503 25.11.20250714.62e0f05
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
];
|
||||
|
||||
config = {
|
||||
networking.hostName = "server"; # Define your hostname.
|
||||
networking.hostName = "server1"; # Define your hostname.
|
||||
res = "2560x1440";
|
||||
|
||||
home-manager = {
|
||||
36
hosts/server2/configuration.nix
Normal file
36
hosts/server2/configuration.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
@@ -13,7 +13,7 @@
|
||||
];
|
||||
|
||||
config = {
|
||||
networking.hostName = "server-gpu"; # Define your hostname.
|
||||
networking.hostName = "server3-gpu"; # Define your hostname.
|
||||
res = "2560x1440";
|
||||
|
||||
home-manager = {
|
||||
Reference in New Issue
Block a user