From dcbda675be5c296ee6275c7210626e4a373d57af Mon Sep 17 00:00:00 2001 From: DavHau Date: Sun, 16 Jul 2023 15:35:48 +0200 Subject: [PATCH] docs(overview): remove .nix files --- .../overview/example-flake-boilerplate.nix | 15 ----------- content/docs/overview/example-flake-full.nix | 27 ------------------- 2 files changed, 42 deletions(-) delete mode 100644 content/docs/overview/example-flake-boilerplate.nix delete mode 100644 content/docs/overview/example-flake-full.nix diff --git a/content/docs/overview/example-flake-boilerplate.nix b/content/docs/overview/example-flake-boilerplate.nix deleted file mode 100644 index 861e4ec..0000000 --- a/content/docs/overview/example-flake-boilerplate.nix +++ /dev/null @@ -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); - }; -} diff --git a/content/docs/overview/example-flake-full.nix b/content/docs/overview/example-flake-full.nix deleted file mode 100644 index 6c7f6cd..0000000 --- a/content/docs/overview/example-flake-full.nix +++ /dev/null @@ -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"; - }; - }; - }; - }; -}