This commit is contained in:
Bun 2025-04-27 02:24:47 -04:00
parent d4da3e84e5
commit 6670e7bb0c
5 changed files with 0 additions and 37 deletions

View file

@ -1,17 +0,0 @@
{ lib, avf, modulesPath, ... }:
{
imports = [
./users
../../modules/system
avf.nixosModules.avf
(modulesPath + "/profiles/headless.nix")
];
networking.hostName = "droid";
system.stateVersion = "25.05";
environment.persistence."/persist".enable = false;
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
}

View file

@ -1 +0,0 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILUTMgy6aPxe8Oc/86qglCBP4njIyu1NbguGYISOmHhT

View file

@ -1,4 +0,0 @@
{ ... }:
{
imports = [ ./main ];
}

View file

@ -1,8 +0,0 @@
{ config, lib, ... }:
{
avf.defaultUser = config.sysusers.main;
home-manager.users."${config.sysusers.main}".home = {
stateVersion = lib.mkForce config.system.stateVersion;
};
}