Files
nixos/flake.nix
T
lsoriano-mcm 3dd4f2783e test
2025-07-03 15:30:58 -05:00

32 lines
678 B
Nix

{
description = "A rewrite of the original Sakamoto NixOS config.";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-utils = {
url = "github:numtide/flake-utils";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
flake-utils,
...
} @ inputs:
flake-utils.lib.eachDefaultSystem (
system: let
config = import ./config.nix;
pkgs = nixpkgs.legacyPackages.${system};
args = {inherit inputs system;} // config;
in {
}
);
}