Coder Social home page Coder Social logo

fnctl-modules's Introduction

NixOS Modules

Example Usage

Add a file named repo.nix to imports in your configuration.nix.

In `repo.nix` put this:
{ config, pkgs, lib, options, ... }@M:
with {
  /* Ensures that the repo is installed by "realizing"
  the outPath value. Then imports it with given fArgs. */
  loadRepo =
  { name
  , fetchArgs, fetcher ? builtins.fetchGit
  , fArgs ? M, fpath ? "default.nix" }:
  let repo = fetcher (fetchArgs // { inherit name; });
  in (import (builtins.toPath "${repo.outPath}/${fpath}") fArgs);
}; {
  imports = [

  (loadRepo {
    name  = "home-manager-git";
    fpath = "default.nix";
    fArgs = { inherit (M) pkgs; };
    fetchArgs = {
      ref = "release-19.03";
      url = "https://github.com/rycee/home-manager.git";
    };
  }).nixos

  (loadRepo {
    name  = "fnctl-nix-functions";
    fpath = "nixos.nix";
    fetchArgs = {
      ref = "main";
      url = "https://github.com/lgmn-io/nix-functions.git";
    };
  })

  (loadRepo {
    name  = "fnctl-nix-overlay";
    fpath = "nixos.nix";
    fetchArgs = {
      ref = "main";
      url = https://github.com/lgmn-io/fnctl-overlay.git";
    };
  })

  (loadRepo {
    name  = "fnctl-nixos-modules";
    fpath = "default.nix";
    fetchArgs = {
      ref = "unstable";
      url = "https://github.com/lgmn-io/fnctl-modules.git";
    };
  }) 

]; }

fnctl-modules's People

Contributors

jakelogemann avatar christinegraham avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.