-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
59 lines (49 loc) · 1.95 KB
/
Copy pathflake.nix
File metadata and controls
59 lines (49 loc) · 1.95 KB
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
{
description = "umceko's NixOS configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
# home-manager as a proper flake input, replacing the fetchTarball.
# `follows` makes it use the SAME nixpkgs as above (no second copy).
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
plasma-manager = {
url = "github:nix-community/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
# Secure Boot: signed bootloader/kernel with your own keys (sbctl).
# master, not v0.4.2 — the tagged release still sets boot.bootspec.enable,
# which nixos-unstable now hard-asserts against.
lanzaboote = {
url = "github:nix-community/lanzaboote";
inputs.nixpkgs.follows = "nixpkgs";
};
# Used ONLY for the proton-cachyos package (prebuilt via nyx-cache).
# Do NOT import its module/overlay — it world-rebuilds core packages
# (that's what broke gnugrep when we tried the CachyOS kernel).
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
# Your SteelSeries ChatMix daemon.
chatmixd.url = "github:UMCEKO/chatmixd";
# HUSH — Maxine denoiser virtual mic. `follows` reuses this nixpkgs (no 2nd copy).
# The GUI + hushd service come from its home-manager module (imported in home.nix).
hush = {
url = "github:UMCEKO/hush";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, home-manager, ... }@inputs: {
# `nixos` here must match the `#nixos` you build with below.
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./configuration.nix
home-manager.nixosModules.home-manager
inputs.lanzaboote.nixosModules.lanzaboote
inputs.chatmixd.nixosModules.default
];
};
};
}