32 lines
678 B
Nix
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 {
|
|
}
|
|
);
|
|
}
|