Files
2026-01-19 20:33:18 -05:00

25 lines
500 B
Nix

{ config, lib, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../../system/system.nix
];
config = {
networking.hostName = "s1901";
# boot.loader.grub.device = "/dev/sda1";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
backupFileExtension = "backup";
users.synchronous.imports = [../../home/home.nix];
};
};
}