Files
tuxcord.nix/flake.nix
T
ErrorNoInternet 5174f845b4
Check / Nix flake (push) Has been cancelled
Lint / Nix expressions (push) Has been cancelled
treewide: set allowUnfree for flake
2026-05-02 03:08:18 -04:00

63 lines
1.3 KiB
Nix

{
inputs = {
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts.url = "github:hercules-ci/flake-parts";
impermanence = {
url = "github:nix-community/impermanence";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-alien = {
url = "github:thiagokokada/nix-alien";
inputs = {
nix-index-database.follows = "nix-index-database";
nixpkgs.follows = "nixpkgs";
};
};
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
nix-super = {
url = "github:privatevoid-net/nix-super";
inputs.flake-parts.follows = "flake-parts";
};
};
outputs =
inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
./nixos
./shells
];
perSystem =
{ pkgs, system, ... }:
{
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
};
formatter = pkgs.nixfmt;
};
systems = [
"x86_64-linux"
"aarch64-linux"
];
};
description = "tuxcord.net NixOS configuration";
}