10 lines
139 B
Nix
10 lines
139 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
./podman.nix
|
|
];
|
|
networking.hostName = "fred";
|
|
}
|