move git and zsh from hosts/satori and split services.nix Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
18 lines
275 B
Nix
18 lines
275 B
Nix
{ lib, config, ... }:
|
|
{
|
|
imports =
|
|
[
|
|
./hardware.nix
|
|
./stuff.nix
|
|
./pkgs.nix
|
|
./networking.nix
|
|
./boot.nix
|
|
./services.nix
|
|
./graphics.nix
|
|
./xorg.nix
|
|
./wayland.nix
|
|
./nix.nix
|
|
];
|
|
system.stateVersion = "21.05";
|
|
}
|