forked from Mic92/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
48 lines (39 loc) · 1.59 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
description = "NixOS configuration with flakes";
# To update all inputs:
# $ nix flake update --recreate-lock-file
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:Mic92/nixpkgs/master";
# for development
#nixpkgs.url = "/home/joerg/git/nixpkgs";
nur.url = "github:nix-community/NUR";
sops-nix.url = "github:Mic92/sops-nix";
bme680-mqtt.url = "github:Mic92/bme680-mqtt";
bme680-mqtt.inputs.utils.follows = "flake-utils";
bme680-mqtt.inputs.nixpkgs.follows = "nixpkgs";
#krops.url = "github:krebs/krops";
#krops.flake = false;
krops.url = "github:Mic92/krops";
krops.inputs.flake-utils.follows = "flake-utils";
krops.inputs.nixpkgs.follows = "nixpkgs";
retiolum.url = "git+https://git.thalheim.io/Mic92/retiolum";
# for development
#sops-nix.url = "/home/joerg/git/sops-nix";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
nixos-hardware.url = "github:Mic92/nixos-hardware/master";
home-manager.url = "github:rycee/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
#doom-emacs.url = "github:hlissner/doom-emacs";
doom-emacs.url = "github:Mic92/doom-emacs/develop";
doom-emacs.flake = false;
nix-doom-emacs.url = "github:vlaci/nix-doom-emacs";
nix-doom-emacs.flake = false;
flake-registry.url = "github:NixOS/flake-registry";
flake-registry.flake = false;
nix-ld.url = "github:Mic92/nix-ld";
nix-ld.inputs.nixpkgs.follows = "nixpkgs";
nix-ld.inputs.utils.follows = "flake-utils";
};
outputs = { ... } @ args: import ./outputs.nix args;
}