15 lines
258 B
Nix
15 lines
258 B
Nix
|
{ config, inputs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./boot-config.nix
|
||
|
./hardware-configuration.nix
|
||
|
../../sets/secureBoot.nix
|
||
|
../../sets/sshd.nix
|
||
|
../../sets/workstation.nix
|
||
|
];
|
||
|
|
||
|
networking.hostName = "sandbar";
|
||
|
system.stateVersion = "24.05";
|
||
|
}
|