-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflake.nix
More file actions
59 lines (50 loc) · 1.74 KB
/
Copy pathflake.nix
File metadata and controls
59 lines (50 loc) · 1.74 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
{
description = "billimek nix config";
inputs = {
# Nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
# Flake framework
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:mightyiam/import-tree";
determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/3";
# Home manager
home-manager = {
url = "github:nix-community/home-manager/release-26.05";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-darwin = {
url = "github:LnL7/nix-darwin/nix-darwin-26.05";
inputs.nixpkgs.follows = "nixpkgs";
};
nixvirt = {
url = "https://flakehub.com/f/AshleyYakeley/NixVirt/*.tar.gz";
inputs.nixpkgs.follows = "nixpkgs";
};
proxmox-nixos.url = "github:SaumonNet/proxmox-nixos";
hardware.url = "github:nixos/nixos-hardware";
nix-colors.url = "github:misterio77/nix-colors";
talhelper.url = "github:budimanjojo/talhelper";
opnix.url = "github:brizzbuzz/opnix";
nvf.url = "github:notashelf/nvf";
# Community fork of zmx with darwin support; upstream neurosnap/zmx fetches ghostty
# at build time which fails in the nix sandbox (neurosnap/zmx#16, #43).
# Revisit when nixpkgs#468608 lands.
zmx.url = "github:thrawny/zmx-flake";
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
inputs@{ flake-parts, import-tree, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ (import-tree ./modules) ];
systems = [
"aarch64-linux"
"x86_64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
};
}