docs(overview): remove .nix files

This commit is contained in:
DavHau 2023-07-16 15:35:48 +02:00
parent ba26c2048d
commit dcbda675be
2 changed files with 0 additions and 42 deletions

View File

@ -1,15 +0,0 @@
{
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
inputs.hiboss.url = "git+https://git.hiboss.com/hiboss";
inputs.hiboss.nixpkgs.follows = "nixpkgs";
outputs = { self, nixpkgs, hiboss, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
hiboss = import hiboss { inherit system pkgs; };
in
{
nixosConfigurations = builtins.fromJSON (import ./configs.json);
};
}

View File

@ -1,27 +0,0 @@
{
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
inputs.hiboss.url = "git+https://git.hiboss.com/hiboss";
inputs.hiboss.nixpkgs.follows = "nixpkgs";
outputs = { self, nixpkgs, hiboss, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
hiboss = import hiboss { inherit system pkgs; };
in
{
nixosConfigurations = {
default = hiboss.nixosSystem {
adminMode = "local";
networkLayer= "yggdrasil";
applications = {
syncthing = {
enable = true;
sharedFolders = "/shared/docs";
};
mumbleClient.server = "mumble.hiboss";
};
};
};
};
}