-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
113 lines (91 loc) · 2.62 KB
/
flake.nix
File metadata and controls
113 lines (91 loc) · 2.62 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
description = "Jasperro's Dotfiles Flake";
inputs = {
self.submodules = true;
secrets = {
url = "./secrets";
flake = false;
buildTime = true;
};
determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/*";
flake-compat.url = "https://git.lix.systems/lix-project/flake-compat/archive/main.tar.gz";
flake-parts.url = "github:hercules-ci/flake-parts";
flake-utils = {
url = "github:numtide/flake-utils";
};
# nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# nixpkgs-unstable-small.url = "github:nixos/nixpkgs/nixos-unstable-small";
# nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05";
hardware.url = "github:nixos/nixos-hardware";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-alien = {
url = "github:thiagokokada/nix-alien";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-compat.follows = "flake-compat";
};
stylix = {
url = "github:danth/stylix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
sops-nix = {
url = "github:mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
nixvim = {
url = "github:nix-community/nixvim";
# inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
impurity.url = "github:outfoxxed/impurity.nix";
waybar = {
url = "github:Alexays/Waybar/master";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-compat.follows = "flake-compat";
};
hyprland = {
url = "github:hyprwm/Hyprland";
};
hyprpaper = {
url = "github:hyprwm/hyprpaper";
};
wofi-power-menu = {
url = "github:szaffarano/wofi-power-menu";
};
niri-nix = {
url = "git+https://codeberg.org/BANanaD3V/niri-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
niri = {
url = "github:Naxdy/niri";
inputs.nixpkgs.follows = "nixpkgs";
};
noctalia = {
url = "github:noctalia-dev/noctalia-shell";
inputs.nixpkgs.follows = "nixpkgs";
};
den.url = "github:vic/den";
import-tree.url = "github:vic/import-tree";
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
debug = true;
imports = [
(inputs.import-tree [
./modules
./hosts
./homes
])
];
systems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
];
};
}