blob: e9a3ee2033547d4c779c9a799f88015a4097d084 (
plain)
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
|
{
description = "Computing environment of Adrian Kummerlaender";
inputs = {
stable.url = github:NixOS/nixpkgs/nixos-24.05;
unstable.url = github:NixOS/nixpkgs/nixpkgs-unstable;
personal.url = github:KnairdA/pkgs;
home-manager = {
url = github:nix-community/home-manager/release-24.05;
inputs = { nixpkgs.follows = "stable"; };
};
emacs.url = github:nix-community/emacs-overlay/master;
jupyter.url = github:GTrunSec/jupyterWith/flakes;
};
outputs = {
self, stable, unstable, personal, emacs, home-manager, jupyter, ...
}: let
system = "x86_64-linux";
jupyter-overlay = (final: prev: {
jupyterWith = jupyter.defaultPackage."${final.system}";
});
pkgs = import stable {
inherit system;
config = { allowUnfree = true; };
overlays = [ jupyter-overlay emacs.overlay ];
};
pkgs-unstable = import unstable {
inherit system;
config = { allowUnfree = true; };
};
pkgs-personal = personal;
config = hostname: home-manager.lib.homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = {
inherit pkgs-unstable;
inherit pkgs-personal;
inherit hostname;
};
modules = [ ./home.nix ];
};
hostnames = builtins.map
(h: builtins.replaceStrings [ ".nix" ] [ "" ] h)
(stable.lib.mapAttrsToList (name: type: name) (builtins.readDir ./host));
in {
packages.x86_64-linux = builtins.listToAttrs
(map (h: { name = h; value = (config h).activationPackage; }) hostnames);
apps.x86_64-linux = builtins.listToAttrs
(map (h: { name = h; value = {
type = "app";
program = "${(config h).activationPackage}/activate";
};
}) hostnames);
};
}
|