16 lines
254 B
Nix
16 lines
254 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../sets/builder.nix
|
|
../../sets/sshd.nix
|
|
../../sets/workstation.nix
|
|
./boot-config.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "smolder";
|
|
system.stateVersion = "23.11";
|
|
}
|
|
|