Configuration for my infrastructure
Find a file
2020-12-30 17:06:52 +01:00
hosts Add examples to README and add hosts to namespace 2020-12-30 17:06:52 +01:00
lib Move vim packages to pkgs 2020-12-28 18:35:15 +01:00
modules Start tmux from zsh 2020-12-30 15:13:04 +01:00
overlays Move vim packages to pkgs 2020-12-28 18:35:15 +01:00
pkgs Move vim packages to pkgs 2020-12-28 18:35:15 +01:00
.gitignore Move vim packages to pkgs 2020-12-28 18:35:15 +01:00
.gitmodules Move tubslatex package to NUR repo 2020-04-05 17:23:35 +02:00
default.nix Add examples to README and add hosts to namespace 2020-12-30 17:06:52 +01:00
overlay.nix Move vim packages to pkgs 2020-12-28 18:35:15 +01:00
README.md Add examples to README and add hosts to namespace 2020-12-30 17:06:52 +01:00

nix configuration

{
  imports = [
    ./modules/profiles/gorgon.nix
    ./private/metis
  ];
}
{ config, pkgs, lib, ... }:

let
  dadada = builtins.fetchGit {
    url = "/home/dadada/nix-config.git";
    ref = "main";
    rev = "4337055f4512c390b99d631e7ed1db0282e82d17";
  } {};
in {
  imports = [
    ./hardware-configuration.nix
    dadada.hosts.gorgon
  ];

  system.stateVersion = "20.03";
}