-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
116 lines (106 loc) · 3.33 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
109
110
111
112
113
114
115
116
{
description = "My NixOS flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
stylix.url = "github:danth/stylix/release-24.11";
nixvim.url = "github:nix-community/nixvim/nixos-24.11";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs =
inputs@{
flake-parts,
nixpkgs,
nixpkgs-unstable,
home-manager,
stylix,
...
}:
flake-parts.lib.mkFlake { inherit inputs; } (
{ withSystem, config, ... }:
{
imports = [
flake-parts.flakeModules.modules
./nvimx
];
flake = {
overlays = {
unstablePkgs = final: prev: {
unstable = import nixpkgs-unstable { inherit (prev.stdenv.hostPlatform) system; };
};
};
modules = {
nixos = {
default = ./nixosModules;
applyOverlays = {
nixpkgs.overlays = builtins.attrValues config.flake.overlays;
};
homeManagerIntegration =
{ lib, ... }:
with lib;
{
imports = [ home-manager.nixosModules.home-manager ];
options = {
home-manager.users = mkOption {
type = types.attrsOf (types.submodule (builtins.attrValues config.flake.modules.homeManager));
};
systemInterface = mkOption { type = types.submodule config.flake.modules.generic.systemInterface; };
};
};
systemModules = {
imports = with config.flake.modules.nixos; [
default
applyOverlays
homeManagerIntegration
stylix.nixosModules.stylix
];
};
};
homeManager = {
default = ./homeManagerModules;
systemIntegration =
{ lib, ... }:
with lib;
{
options.systemInterface = mkOption {
type = types.submodule config.flake.modules.generic.systemInterface;
};
};
};
generic = {
systemInterface = ./systemInterfaceModules;
};
};
nixosModules = config.flake.modules.nixos;
nixosConfigurations =
let
mkNixosSystem =
host: system:
nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./hosts/${host}/configuration.nix
{ networking.hostName = host; }
config.flake.modules.nixos.systemModules
];
};
hosts = {
jonas-desktop = "x86_64-linux";
jonas-laptop = "x86_64-linux";
};
in
builtins.mapAttrs mkNixosSystem hosts;
};
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
}
);
}