Initial commit

This commit is contained in:
2025-10-30 18:26:18 +01:00
commit 65501e28d7
8 changed files with 1100 additions and 0 deletions

28
flake.nix Normal file
View File

@@ -0,0 +1,28 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nix-flatpak = {
url = "github:gmodena/nix-flatpak";
inputs.nixpkgs.follows = "nixpkgs";
};
# Keeping this for the binary cache!
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
};
outputs = { self, nixpkgs, nix-flatpak, chaotic, ... }: {
nixosConfigurations = {
epiquev2 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
nix-flatpak.nixosModules.nix-flatpak
# This module adds the Chaotic overlay AND the necessary binary cache.
chaotic.nixosModules.default
];
};
};
};
}