diff options
Diffstat (limited to 'nixos.nix')
-rw-r--r-- | nixos.nix | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/nixos.nix b/nixos.nix deleted file mode 100644 index ea1605a..0000000 --- a/nixos.nix +++ /dev/null @@ -1,27 +0,0 @@ -# Nix config for the main biz machine. - -let - nixpkgs = builtins.fetchTarball (import ./pack/nixpkgs.nix); -in -import "${nixpkgs}/nixos" { - system = "x86_64-linux"; - configuration = { - imports = [ - ./hardware-configuration.nix - ./networking.nix - - # end config - ./configuration.nix - - # our modules - ./modules/ibb.nix - ./modules/fathom.nix - - # third party - (builtins.fetchTarball { - url = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/archive/v2.2.0/nixos-mailserver-v2.2.0.tar.gz"; - sha256 = "0gqzgy50hgb5zmdjiffaqp277a68564vflfpjvk1gv6079zahksc"; - }) - ]; - }; -} |