apricot: init

This commit is contained in:
LavaDesu 2021-08-21 18:20:17 +07:00
parent a6a5c2cbca
commit 2917dcbe3b
Signed by: cilly
GPG key ID: 6500251E087653C9
5 changed files with 92 additions and 0 deletions

21
hosts/apricot/default.nix Normal file
View file

@ -0,0 +1,21 @@
{ 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
];
}