nixos-config/system/spike/default.nix

19 lines
367 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
2020-11-16 22:47:50 +00:00
../../sets/cpu/intel.nix
2020-11-17 01:51:13 +00:00
../../sets/gpu/intel.nix
../../sets/hacking.nix
2020-11-16 22:47:50 +00:00
../../sets/laptop.nix
2020-11-17 01:51:13 +00:00
../../sets/ssh.nix
../../sets/buildMachines.nix
2021-01-10 06:27:22 +00:00
../../sets/workstation.nix
2020-09-21 00:59:56 +00:00
];
2020-08-23 23:31:28 +00:00
networking.hostName = "spike";
system.stateVersion = "20.03";
}