13 lines
215 B
Nix
13 lines
215 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
inputs.stylix.nixosModules.stylix
|
|
./hardware-configuration.nix
|
|
../server
|
|
../themes.nix
|
|
./podman.nix
|
|
];
|
|
networking.hostName = "fred";
|
|
}
|