blob: 385a9e78a2ce1580c56c845c5bc50e00066fcc96 [file] [log] [blame]
Skyler Greya0da6b22024-02-11 22:53:41 +00001{
Samuel Shuert02ffd1e2024-02-13 21:37:15 -05002 description = "The Chimera nix configuration flake, a shared system configuration";
Skyler Greya0da6b22024-02-11 22:53:41 +00003
4 inputs = {
Skyler Greya0da6b22024-02-11 22:53:41 +00005 anyrun = {
6 url = "github:Kirottu/anyrun";
7 inputs.nixpkgs.follows = "nixpkgs";
8 };
9
Skyler Grey57f6b782024-03-13 14:43:09 +000010 collabora-gtimelog = {
11 url = "git+https://gitlab.collabora.com/collabora/gtimelog.git";
12 flake = false;
13 };
14 collabora-icon = {
15 url = "https://www.collabora.com/favicon.ico";
16 flake = false;
17 };
18
Skyler Greya0da6b22024-02-11 22:53:41 +000019 ewwsalmoomedits--eww-widgets = {
20 url = "github:saimoomedits/eww-widgets";
21 flake = false;
22 };
Skyler Grey4e230892024-02-13 22:58:46 +000023
Skyler Grey33e86632024-05-24 23:57:45 +000024 firefox-sidebery-gnome = {
25 url = "github:rafaelmardojai/firefox-gnome-theme";
26 flake = false;
27 };
28
Samuel Shuert2e42e672024-02-21 21:49:28 +000029 home-manager = {
30 url = "github:nix-community/home-manager";
31 inputs.nixpkgs.follows = "nixpkgs";
32 };
33
34 hyprland.url = "github:hyprwm/Hyprland";
Skyler Grey55d3edc2024-05-25 12:22:30 +000035 lix = {
36 url = "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1";
37 flake = false;
38 };
39 lix-module = {
40 url = "git+https://git.lix.systems/lix-project/nixos-module";
41 inputs.lix.follows = "lix";
42 inputs.nixpkgs.follows = "nixpkgs";
43 };
Samuel Shuert2e42e672024-02-21 21:49:28 +000044
45 nix-index-database = {
46 url = "github:nix-community/nix-index-database";
47 inputs.nixpkgs.follows = "nixpkgs";
48 };
49
Skyler Grey5db90f92024-02-25 11:24:31 +000050 nixos-hardware.url = "github:nixos/nixos-hardware/master";
51
Samuel Shuert2e42e672024-02-21 21:49:28 +000052 nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
53
Skyler Grey4e230892024-02-13 22:58:46 +000054 nur.url = "github:nix-community/nur";
Samuel Shuert2e42e672024-02-21 21:49:28 +000055
56 snowfall-lib = {
Skyler Grey694958e2024-02-29 23:54:28 +000057 url = "github:snowfallorg/lib/dev";
Samuel Shuert2e42e672024-02-21 21:49:28 +000058 inputs.nixpkgs.follows = "nixpkgs";
59 };
60
61 sops-nix.url = "github:Mic92/sops-nix";
Samuel Shuert804f81b2024-02-21 22:20:01 +000062
63 templates.url = "git+https://git.clicks.codes/Templates";
Skyler Greya0da6b22024-02-11 22:53:41 +000064 };
65
Skyler Grey4e230892024-02-13 22:58:46 +000066 outputs =
67 { self, nixpkgs, ... }@inputs:
Skyler Grey694958e2024-02-29 23:54:28 +000068 inputs.snowfall-lib.mkFlake {
69 inherit inputs;
70 src = ./.;
71
72 homes.modules = [
Samuel Shuert659b5642024-02-23 20:47:43 +000073 inputs.anyrun.homeManagerModules.default
74 inputs.hyprland.homeManagerModules.default
75 inputs.nur.hmModules.nur
Samuel Shuert73a9d282024-02-23 18:43:32 +000076 inputs.nix-index-database.hmModules.nix-index
Skyler Grey57f6b782024-03-13 14:43:09 +000077 inputs.sops-nix.homeManagerModules.sops
Samuel Shuertd7ad8db2024-02-20 20:53:34 +000078 ];
Samuel Shuertd7ad8db2024-02-20 20:53:34 +000079
Samuel Shuert2e42e672024-02-21 21:49:28 +000080 systems.modules.nixos = [
Skyler Greya0da6b22024-02-11 22:53:41 +000081 inputs.hyprland.nixosModules.default
Samuel Shuert02ffd1e2024-02-13 21:37:15 -050082 inputs.nur.nixosModules.nur
Samuel Shuert2e42e672024-02-21 21:49:28 +000083 inputs.sops-nix.nixosModules.sops
Skyler Grey55d3edc2024-05-25 12:22:30 +000084 inputs.lix-module.nixosModules.default
Skyler Greya0da6b22024-02-11 22:53:41 +000085 ];
86
Skyler Grey5db90f92024-02-25 11:24:31 +000087 systems.hosts.greylag.modules = [
88 inputs.nixos-hardware.nixosModules.framework-13th-gen-intel
89 ];
90
Skyler Greya0da6b22024-02-11 22:53:41 +000091 snowfall = {
Skyler Grey4e230892024-02-13 22:58:46 +000092 namespace = "chimera";
Skyler Greya0da6b22024-02-11 22:53:41 +000093
Skyler Grey4e230892024-02-13 22:58:46 +000094 meta.name = "chimera";
95 meta.title = "Coded and Minion's Nix Configurations";
Skyler Greya0da6b22024-02-11 22:53:41 +000096 };
97
98 outputs-builder = channels: {
Skyler Grey4e230892024-02-13 22:58:46 +000099 formatter = nixpkgs.legacyPackages.${channels.nixpkgs.system}.nixfmt-rfc-style;
Skyler Greya0da6b22024-02-11 22:53:41 +0000100 };
101
102 channels-config = {
103 allowUnfree = true;
104 };
105 };
106}