-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
77 lines (66 loc) · 2.09 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 = "My NixOS flake configuration";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
# nixpkgs-small.url = "github:NixOS/nixpkgs/nixos-unstable-small";
nur = {
url = "github:nix-community/nur";
};
home-manager = {
inputs.nixpkgs.follows = "nixpkgs";
url = "github:nix-community/home-manager";
};
# nixpkgs is only used for tests, so no don't need to follow it here
# mhm
wrapper-manager.url = "github:viperML/wrapper-manager";
nix-colors.url = "github:misterio77/nix-colors";
stylix = {
url = "github:diniamo/stylix/custom";
inputs.nixpkgs.follows = "home-manager";
};
hyprland = {
url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland-plugins = {
url = "github:hyprwm/hyprland-plugins";
inputs.hyprland.follows = "hyprland";
};
hyprpicker.url = "github:hyprwm/hyprpicker";
anyrun.url = "github:Kirottu/anyrun";
schizofox.url = "github:schizofox/schizofox";
jerry.url = "github:justchokingaround/jerry";
lobster.url = "github:justchokingaround/lobster";
neovim-flake.url = "github:notashelf/nvf";
hyprwm-contrib.url = "github:hyprwm/contrib";
helix.url = "github:SoraTenshi/helix/new-daily-driver";
nix-vscode-extensions.url = "github:nix-community/nix-vscode-extensions";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
nix-gaming = {
url = "github:fufexan/nix-gaming";
inputs.flake-parts.follows = "flake-parts";
};
ags = {
url = "github:Aylur/ags";
inputs.nixpkgs.follows = "nixpkgs";
};
# Secrets management
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
# snap
nix-snapd = {
url = "github:nix-community/nix-snapd";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs: let
lib' = import ./lib {inherit inputs;};
in {
nixosConfigurations = import ./hosts {inherit inputs lib';};
};
}