12 lines
223 B
Nix
12 lines
223 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
inputs.stylix.nixosModules.stylix
|
|
./hardware-configuration.nix
|
|
../../server
|
|
../themes.nix
|
|
];
|
|
networking.hostName = "harper";
|
|
}
|