generation 498 25.11.20250714.62e0f05

This commit is contained in:
2025-08-21 18:37:10 -04:00
parent 2d4e64d04f
commit 56336e0b7e
5 changed files with 111 additions and 3 deletions

View File

@@ -0,0 +1,37 @@
{
config,
pkgs,
lib,
...
}: {
imports = [
./hardware-configuration.nix
../../system/system.nix
../meta.nix
./ssh.nix
./gpu.nix
];
config = {
networking.hostName = "server-gpu"; # 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;
};
}