aboutsummaryrefslogtreecommitdiff
path: root/default.nix
blob: 7b6e001137d986114d93208432dd1b9060bb182f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
let
  pkgs = import <nixpkgs> { };
  rootSrc = pkgs.nix-gitignore.gitignoreSource [ ] ./.;
in with pkgs;
with pkgs.stdenv; rec {
  utils = import ./nixos/utils.nix {
    pkgs = pkgs;
    rootSrc = rootSrc; # FIXME: remove the need for this
    baseName = "dotfiles";
  };
  test = utils.test [
    utils.formatNix
    (utils.shellcheck ".*(encrypted|os-installation.sh).*")
    # subtasks.fixme
    # subtasks.uniqueFeeds
    # subtasks.formatNix
  ];
}