mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-12 05:31:12 -05:00
21 lines
395 B
Nix
21 lines
395 B
Nix
|
|
{ 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";
|
||
|
|
}
|
||
|
|
];
|
||
|
|
}
|