-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
executable file
·77 lines (69 loc) · 1.93 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
{
description = "System Configuration Flake";
nixConfig.trusted-substituters = [ "https://hyprland.cachix.org" ];
nixConfig.extra-trusted-public-keys = [
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
];
inputs = {
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
hyprlock.url = "github:hyprwm/hyprlock";
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
nixos-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
ags.url = "github:Aylur/ags";
matcha.url = "git+https://codeberg.org/QuincePie/matcha.git";
nixos-generators = {
url = "github:nix-community/nixos-generators";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-cosmic = {
url = "github:lilyinstarlight/nixos-cosmic";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
nixpkgs,
home-manager,
nixos-generators,
...
}@inputs:
let
system = "x86_64-linux";
in
{
nixosConfigurations = (
import ./hosts {
inherit (nixpkgs) lib;
inherit inputs nixpkgs home-manager; # Inherit inputs
}
);
homeConfigurations = (
import ./home-manager/default.nix {
inherit (nixpkgs) lib;
inherit inputs nixpkgs home-manager;
}
);
packages.x86_64-linux = {
laptop = nixos-generators.nixosGenerate {
format = "iso";
inherit system;
specialArgs = {
inherit inputs; # needed for hyprland and probs other stuff
host = {
hostName = "benlaptop";
};
};
modules = [
hosts/benlaptop
hosts/configuration.nix
hosts/modules
./custom-options.nix
];
};
};
};
}