flakes/hosts/apricot/default.nix

22 lines
317 B
Nix
Raw Normal View History

2021-08-21 18:20:17 +07:00
{ config, modules, overlays, pkgs, ... }: {
networking.hostName = "apricot";
system.stateVersion = "21.05";
imports = with modules.system; [
base
input
kernel
nix
packages
security
snapper
./filesystem.nix
./kernel.nix
./networking.nix
../../users/rin.nix
];
}