24 lines
449 B
Nix
24 lines
449 B
Nix
{ pkgs, libs, ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
(libs.root "/host/server/default.nix")
|
|
];
|
|
|
|
nix.settings.experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
];
|
|
|
|
device = {
|
|
flake-name = "home-server";
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
time.timeZone = "Asia/Ho_Chi_Minh";
|
|
system.stateVersion = "25.11";
|
|
}
|