-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
42 lines (40 loc) · 1.14 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
{
description = "Remember the DISSSSS ";
outputs =
{ self, ... }@inputs:
{
nixosConfigurations = {
userland = inputs.nixpkgs.lib.nixosSystem {
modules = [
./src/hardware-configuration.nix
./src/userland.nix
];
system = "x86_64-linux";
};
backend = inputs.nixpkgs.lib.nixosSystem {
modules = [
./src/backend.nix
inputs.microvm.nixosModules.host
];
};
vm-services = inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./vms/services.nix
inputs.microvm.nixosModules.microvm
];
};
};
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
vscode-server.url = "github:nix-community/nixos-vscode-server";
niri.url = "github:sodiboo/niri-flake";
microvm = {
url = "github:astro/microvm.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
utreexod-flake.url = "github:jaoleal/utreexod-flake";
floresta.url = "git+https://github.com/jaoleal/Floresta?ref=more-flake-checks";
};
}