-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflake.nix
More file actions
62 lines (48 loc) · 1.84 KB
/
flake.nix
File metadata and controls
62 lines (48 loc) · 1.84 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
51
52
53
54
55
56
57
58
59
60
61
62
{
description = "The Configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-25.05";
nix-wire.url = "github:niksingh710/nix-wire";
flake-parts.url = "github:hercules-ci/flake-parts";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nix-darwin.url = "github:LnL7/nix-darwin";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
# hooks for git
git-hooks.url = "github:cachix/git-hooks.nix";
git-hooks.flake = false;
# sops-nix for managing secrets
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
# stylix for theming
stylix.url = "github:danth/stylix";
stylix.inputs.nixpkgs.follows = "nixpkgs";
# disk management for nixos installations/configurations
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
nix-cachyos-kernel.url = "github:xddxdd/nix-cachyos-kernel/release";
# Discord flake
nixcord.url = "github:kaylorben/nixcord";
# nix-index; `,` command available
nix-index-database.url = "github:nix-community/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
# zen till (https://github.com/NixOS/nixpkgs/issues/327982) is resolved.
# will be resolved once zen comes out of beta.
zen-browser.url = "github:0xc000022070/zen-browser-flake";
hyprland.url = "github:hyprwm/Hyprland";
hyprland-contrib = {
url = "github:hyprwm/contrib";
inputs.nixpkgs.follows = "nixpkgs";
};
# personal flakes
nsearch.url = "github:niksingh710/nsearch";
nvix.url = "github:niksingh710/nvix";
};
outputs =
inputs:
inputs.nix-wire.mkFlake {
inherit inputs;
imports = [ ./parts ];
};
}