nixos-config/system/rainbowdash/default.nix

19 lines
354 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/hacking.nix
2020-11-16 22:47:50 +00:00
../../sets/laptop.nix
2020-11-17 01:51:13 +00:00
../../sets/neovim
../../sets/sway.nix
2020-08-15 03:27:08 +00:00
];
2020-11-16 22:47:50 +00:00
networking.hostName = "rainbowdash";
2020-08-15 03:27:08 +00:00
system.stateVersion = "20.03";
}