remove unused flake stuff

This commit is contained in:
Zynh Ludwig 2024-12-12 15:46:00 -08:00
parent 1ea7c6d404
commit 8cd12ccb2d

View file

@ -8,24 +8,11 @@
outputs = inputs@{ flake-parts, nixpkgs, ... }: outputs = inputs@{ flake-parts, nixpkgs, ... }:
flake-parts.lib.mkFlake { inherit inputs; } { flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
# To import a flake module
# 1. Add foo to inputs
# 2. Add foo as a parameter to the outputs function
# 3. Add here: foo.flakeModule
];
systems = nixpkgs.lib.platforms.unix; systems = nixpkgs.lib.platforms.unix;
perSystem = { config, self', inputs', pkgs, system, ... }: { perSystem = { config, self', inputs', pkgs, system, ... }: {
packages.default = pkgs.dwl.overrideAttrs { packages.default = pkgs.dwl.overrideAttrs {
src = ./.; src = ./.;
}; };
}; };
flake = {
# The usual flake attributes can be defined here, including system-
# agnostic ones like nixosModule and system-enumerating ones, although
# those are more easily expressed in perSystem.
};
}; };
} }