Trying To Move User Creation To A Separate File

This commit is contained in:
Annika Merris 2024-07-23 15:16:04 -04:00
parent 5c25a0ac56
commit 8994b2ca56
5 changed files with 44 additions and 3 deletions

20
hosts/nixbird/default.nix Normal file
View file

@ -0,0 +1,20 @@
{ inputs, globals, ... }:
with inputs;
inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
# specialArgs = {inherit inputs;};
modules = [
globals
lix-module.nixosModules.default
home-manager.nixosModules.home-manager
../../modules/common
../../modules/nixos
{
physical = false;
server = true;
networking.hostName = "nixbird";
}
];
}