Skip to content

Instantly share code, notes, and snippets.

@srhb
Created April 16, 2019 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srhb/33c9408cdfb30fed0329fca97349fe3e to your computer and use it in GitHub Desktop.
Save srhb/33c9408cdfb30fed0329fca97349fe3e to your computer and use it in GitHub Desktop.
let
nixpkgs = builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/1fc591f9a5bd1b016b5d66dfab29560073955a14.tar.gz;
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.nixos [
(
{...}: {
imports = [
(pkgs.path + "/nixos/modules/virtualisation/qemu-vm.nix")
];
services.znc.enable = true;
services.znc.config = {};
}
)
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment