nixos-config/system/spike/default.nix

17 lines
320 B
Nix
Raw Normal View History

2020-08-23 23:31:28 +00:00
{ config, pkgs, ... }:
{
2020-09-21 00:59:56 +00:00
imports = [
./boot-config.nix
./hardware-configuration.nix
../../services/ssh.nix
2020-11-16 22:47:50 +00:00
../../sets/gpu/intel.nix
../../sets/cpu/intel.nix
../../sets/laptop.nix
2020-09-21 00:59:56 +00:00
];
2020-08-23 23:31:28 +00:00
networking.hostName = "spike";
2020-11-16 22:47:50 +00:00
services.avahi.publish.enable = true;
2020-08-23 23:31:28 +00:00
system.stateVersion = "20.03";
}