-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
50 lines (50 loc) · 1.35 KB
/
Copy pathflake.nix
File metadata and controls
50 lines (50 loc) · 1.35 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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-26.05";
nixpkgs-discord.url = "github:NixOS/nixpkgs/03b3121df26689191c0cb63ea419ff50741c0bd7";
home-manager = {
url = "github:nix-community/home-manager/release-26.05";
inputs.nixpkgs.follows = "nixpkgs";
};
astal = {
url = "github:aylur/astal";
inputs.nixpkgs.follows = "nixpkgs";
};
ags = {
url = "github:Aylur/ags/v3.1.2";
inputs = {
astal.follows = "astal";
nixpkgs.follows = "nixpkgs";
};
};
# Oblichey first needs to be fixed
# oblichey.url = "path:/home/simon/GIT/Consuming/oblichey";
};
outputs = {
nixpkgs,
nixpkgs-discord,
...
} @ inputs: {
nixosConfigurations = let
system = "x86_64-linux";
specialArguments = {
inputs = inputs;
pkgs-discord = import nixpkgs-discord {
inherit system;
config.allowUnfree = true;
};
};
in {
"TuxedoInfinityBook14Gen8" = nixpkgs.lib.nixosSystem {
system = system;
specialArgs = specialArguments;
modules = [./nixos/machines/TuxedoInfinityBook14Gen8/system.nix];
};
"Workstation" = nixpkgs.lib.nixosSystem {
system = system;
specialArgs = specialArguments;
modules = [./nixos/machines/Workstation/system.nix];
};
};
};
}