-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
56 lines (45 loc) · 1.52 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
49
50
51
52
53
54
55
56
{
description = "m32-conf - configuration for various workstations and servers";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
nur.url = "github:nix-community/NUR";
home-manager.url = "github:nix-community/home-manager";
flake-parts.url = "github:hercules-ci/flake-parts";
sops-nix.url = "github:Mic92/sops-nix";
# Deployment / Provisioning
disko.url = "github:nix-community/disko";
deploy.url = "github:serokell/deploy-rs";
nixos-generators.url = "github:nix-community/nixos-generators";
nixos-anywhere.url = "github:nix-community/nixos-anywhere/pxe-boot";
# System Utils
impermanence.url = "github:nix-community/impermanence";
lanzaboote.url = "github:nix-community/lanzaboote";
# Emacs
emacs-overlay.url = "github:nix-community/emacs-overlay";
spacemacs = {
url = "github:syl20bnr/spacemacs";
flake = false;
};
doomemacs = {
url = "github:doomemacs/doomemacs";
flake = false;
};
flake-registry = {
url = "github:NixOS/flake-registry";
flake = false;
};
# Extra packages
l5p-keyboard-rgb.url = "github:4JX/L5P-Keyboard-RGB";
};
outputs = inputs@{ self, flake-parts, home-manager, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" "aarch64-linux" ];
imports = [
./configurations.nix
./home/flake-module.nix
./devShells/flake-module.nix
./modules/flake-module.nix
./pkgs/flake-module.nix
];
};
}