nixos-config/system/rainbowdash/default.nix

29 lines
639 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
2020-11-16 22:47:50 +00:00
imports = [
./boot-config.nix
./secure-boot.nix
./hardware-configuration.nix
../../sets/cpu/intel.nix
2020-11-17 01:51:13 +00:00
../../sets/gpu/intel.nix
../../sets/buildMachines.nix
2020-11-17 01:51:13 +00:00
../../sets/hacking.nix
2020-11-16 22:47:50 +00:00
../../sets/laptop.nix
2021-06-13 21:35:33 +00:00
../../sets/1password.nix
2021-01-10 06:27:22 +00:00
../../sets/workstation.nix
2021-08-01 19:47:11 +00:00
../../sets/krb5.nix
2021-08-25 03:34:12 +00:00
../../sets/keybase.nix
2020-08-15 03:27:08 +00:00
];
2021-07-07 04:17:35 +00:00
environment.systemPackages = [
pkgs.pkgsCross.aarch64-multiplatform.buildPackages.gcc
];
2021-08-01 19:47:11 +00:00
boot.supportedFilesystems = [ "nfs4" ];
networking.domain = "manehattan.artem.ist";
2020-11-16 22:47:50 +00:00
networking.hostName = "rainbowdash";
2020-08-15 03:27:08 +00:00
system.stateVersion = "20.03";
}