mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-11 12:31:02 -05:00
Trying To Move User Creation To A Separate File
This commit is contained in:
parent
5c25a0ac56
commit
8994b2ca56
5 changed files with 44 additions and 3 deletions
20
hosts/nixbird/default.nix
Normal file
20
hosts/nixbird/default.nix
Normal 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";
|
||||
}
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue