-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
73 lines (68 loc) · 2.15 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
{
description = "nktfh100's nixos configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
unstable.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
catppuccin.url = "github:catppuccin/nix";
# spicetify-nix.url = "github:Gerg-L/spicetify-nix"; # Doesn't work
# spicetify-nix.inputs.nixpkgs.follows = "nixpkgs";
minegrub-theme.url = "github:Lxtharia/minegrub-world-sel-theme";
};
outputs =
{
self,
nixpkgs,
# spicetify-nix,
...
}@inputs:
let
commonModules = [
(
{ pkgs, ... }:
{
_module.args.unstable = import inputs.unstable {
inherit (pkgs.stdenv.targetPlatform) system;
config.allowUnfree = true;
};
}
)
inputs.home-manager.nixosModules.home-manager
inputs.minegrub-theme.nixosModules.default
inputs.catppuccin.nixosModules.catppuccin
{
home-manager.users.nktfh100 = {
imports = [ inputs.catppuccin.homeManagerModules.catppuccin ];
};
}
];
specialArgs = {
# inherit spicetify-nix;
};
in
{
nixosConfigurations.nktfh100-alpha = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = commonModules ++ [ ./hosts/alpha/configuration.nix ];
specialArgs = specialArgs;
};
nixosConfigurations.nktfh100-beta = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = commonModules ++ [ ./hosts/beta/configuration.nix ];
specialArgs = specialArgs;
};
nixosConfigurations.nktfh100-gamma = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = commonModules ++ [ ./hosts/gamma/configuration.nix ];
specialArgs = specialArgs;
};
nixosConfigurations.nktfh100-delta = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = commonModules ++ [ ./hosts/delta/configuration.nix ];
specialArgs = specialArgs;
};
};
}