-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
63 lines (56 loc) · 1.58 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
{
description = "moody's linux systems";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable-small";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
jovian.url = "github:jovian-Experiments/Jovian-NixOS";
jovian.inputs.nixpkgs.follows = "nixpkgs";
gameover.url = "github:majiru/gameover";
gameover.inputs.nixpkgs.follows = "nixpkgs";
pipewire-screenaudio.url = "github:IceDBorn/pipewire-screenaudio";
pipewire-screenaudio.inputs.nixpkgs.follows = "nixpkgs";
vacme-vim = {
url = "github:olivertaylor/vacme";
flake = false;
};
};
outputs = { self, nixpkgs, jovian, ... }@inputs: {
nixosConfigurations = {
"sakuya" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./sakuya-hardware.nix
./prefs.nix
./nix.nix
./sakuya.nix
./home.nix
];
};
"marisa" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./marisa-hardware.nix
./nix.nix
./prefs.nix
./marisa.nix
./home.nix
];
};
"nitori" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./nitori-hardware.nix
./prefs.nix
./nix.nix
jovian.outputs.nixosModules.jovian
./nitori.nix
./home.nix
];
};
};
};
}