-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathflake.nix
108 lines (91 loc) · 2.95 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
description = "λ simple and configureable Nix-Flake repository!";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
nixpkgs-unstable.url = "nixpkgs/nixpkgs-unstable";
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
# System application(s)
ragenix.url = "github:yaxitech/ragenix";
kmonad = {
url = "github:kmonad/kmonad?dir=nix";
inputs.nixpkgs.follows = "nixpkgs";
};
# Window Manager(s) + Extensions
xmonad = {
url = "github:xmonad/xmonad";
inputs.nixpkgs.follows = "nixpkgs";
};
xmonad-contrib.url =
"github:icy-thought/xmonad-contrib"; # :TODO| replace with official after #582 == merged!
pyprland.url = "github:hyprland-community/pyprland";
# Application -> (Cached) Git
rust.url = "github:oxalica/rust-overlay";
zen-browser.url = "github:0xc000022070/zen-browser-flake";
# Submodules (temporary) # TODO
emacs-dir = {
url = "https://github.com/Icy-Thought/emacs.d.git";
type = "git";
submodules = true;
flake = false;
};
nvim-dir = {
url = "https://github.com/Icy-Thought/nvim.d.git";
type = "git";
submodules = true;
flake = false;
};
};
outputs = inputs@{ self, nixpkgs, nixpkgs-unstable, ... }:
let
inherit (lib) my;
system = "x86_64-linux";
mkPkgs = pkgs: extraOverlays:
import pkgs {
inherit system;
config.allowUnfree = true;
overlays = extraOverlays ++ (lib.attrValues self.overlays);
};
pkgs = mkPkgs nixpkgs [ self.overlays.default ];
pkgs-unstable = mkPkgs nixpkgs-unstable [ ];
lib = nixpkgs.lib.extend (final: prev: {
my = import ./lib {
inherit pkgs inputs;
lib = final;
};
});
in {
lib = lib.my;
overlays = (my.mapModules ./overlays import) // {
default = final: prev: {
unstable = pkgs-unstable;
my = self.packages.${system};
};
nvfetcher = final: prev: {
sources = builtins.mapAttrs (_: p: p.src)
((import ./packages/_sources/generated.nix) {
inherit (final) fetchurl fetchgit fetchFromGitHub dockerTools;
});
};
};
packages."${system}" =
my.mapModules ./packages (p: pkgs.callPackage p { });
nixosModules = {
snowflake = import ./.;
} // my.mapModulesRec ./modules import;
nixosConfigurations = my.mapHosts ./hosts { };
devShells."${system}".default = import ./shell.nix { inherit lib pkgs; };
templates.full = {
path = ./.;
description = "λ well-tailored and configureable NixOS system!";
} // import ./templates;
templates.default = self.templates.full;
# TODO: deployment + template tool.
# apps."${system}" = {
# type = "app";
# program = ./bin/hagel;
# };
};
}