13 lines
268 B
Nix
13 lines
268 B
Nix
{nixpkgs, system, ...}:
|
|
{
|
|
# Host configurations
|
|
another_Desktop = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
|
|
# modules = [
|
|
# ./configuration.nix
|
|
# ./hardware-configuration.nix
|
|
# # import ../core/bootloader.nix
|
|
#];
|
|
};
|
|
} |