mirror of
https://github.com/BalrajSinghGidda/nixos-dotfiles.git
synced 2026-04-07 09:27:23 +00:00
12 lines
331 B
Nix
12 lines
331 B
Nix
# Host entry point for the "nixos-btw" machine
|
|
# This file imports all system-level configuration for this host
|
|
{
|
|
imports = [
|
|
# Hardware-specific configuration (auto-generated by nixos-generate-config)
|
|
./hardware-configuration.nix
|
|
|
|
# Shared NixOS modules (core, packages, services)
|
|
../../modules/nixos
|
|
];
|
|
}
|