Skip to content

Instantly share code, notes, and snippets.

View bburdette's full-sized avatar

Ben Burdette bburdette

  • Interstitial Technologies
  • boulder, co
View GitHub Profile
let
nixpkgs = import <nixpkgs> {};
in
with nixpkgs;
stdenv.mkDerivation {
name = "elm-env";
buildInputs = [
elmPackages.elm
elmPackages.elm-analyse
elmPackages.elm-doc-preview
@bburdette
bburdette / gist:95a4ee29f9b324bd19a14142e1e06810
Last active February 6, 2024 18:15
nixos nextcloud setup with collabora
{ config, pkgs, lib, ... }:
{
imports = [
<nixpkgs/nixos/modules/virtualisation/linode-image.nix>
];
services.nextcloud = {
enable = true;
package = pkgs.nextcloud27;