fondue: init

This commit is contained in:
LavaDesu 2021-09-20 18:10:28 +07:00
parent eee9b5df5b
commit 2b4cb226a1
Signed by: cilly
GPG key ID: 6500251E087653C9
5 changed files with 83 additions and 0 deletions

23
hosts/fondue/default.nix Normal file
View file

@ -0,0 +1,23 @@
{ config, modules, modulesPath, overlays, pkgs, ... }: {
networking.hostName = "fondue";
system.stateVersion = "21.05";
time.timeZone = "Australia/Melbourne";
imports = with modules.system; [
(modulesPath + "/profiles/qemu-guest.nix")
base
input
kernel
nix
packages
security
snapper
./filesystem.nix
./kernel.nix
./networking.nix
../../users/rin.nix
];
}