From 8cd12ccb2dbdd5eb112720ce20eb3bc29c5ad1ef Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Thu, 12 Dec 2024 15:46:00 -0800 Subject: [PATCH] remove unused flake stuff --- flake.nix | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/flake.nix b/flake.nix index e2e3aeb..0e3ab06 100644 --- a/flake.nix +++ b/flake.nix @@ -8,24 +8,11 @@ outputs = inputs@{ flake-parts, nixpkgs, ... }: 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; perSystem = { config, self', inputs', pkgs, system, ... }: { packages.default = pkgs.dwl.overrideAttrs { 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. - - }; }; }