This repository has been archived on 2025-10-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nixos-config/flake.nix

36 lines
812 B
Nix

{
description = "My NixOS Configurations Flake";
inputs = {
# Source: https://github.com/NixOS/nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
nixpkgs-old.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs-latest.url = "github:nixos/nixpkgs";
# Source: https://github.com/nix-community/home-manager
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
# Source: https://github.com/NixOS/nixos-hardware
nixos-hardware.url = "github:nixos/nixos-hardware";
# Source: https://github.com/Mic92/sops-nix
sops-nix.url = "github:mic92/sops-nix";
};
outputs =
{
nixpkgs,
nixpkgs-old,
nixpkgs-latest,
...
}@inputs:
let
#
in
{
#
};
}