diff options
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 24 |
1 files changed, 5 insertions, 19 deletions
diff --git a/flake.nix b/flake.nix index a70a934..e7a4624 100644 --- a/flake.nix +++ b/flake.nix @@ -41,13 +41,6 @@ ref = "master"; }; - nur = { - type = "github"; - owner = "nix-community"; - repo = "NUR"; - ref = "master"; - }; - darwin = { type = "github"; owner = "LnL7"; @@ -194,20 +187,11 @@ inputs = { flake-compat.follows = "flake-compat"; flake-utils.follows = "flake-utils"; - gitignore.follows = "gitignore"; nixpkgs-stable.follows = "nixpkgs-stable"; nixpkgs.follows = "nixpkgs"; }; }; - gitignore = { - type = "github"; - owner = "hercules-ci"; - repo = "gitignore.nix"; - ref = "master"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - xmonad-ng = { # type = "path"; # path = "/home/azahi/src/xmonad-ng"; @@ -269,9 +253,11 @@ overlays = [self.overlays.default]; }; - devShells.default = self.legacyPackages.${system}.mkShell { - inherit (self.checks.${system}.preCommit) shellHook; - }; + devShells.default = with self.legacyPackages.${system}; + mkShell { + inherit (self.checks.${system}.preCommit) shellHook; + packages = [go-task]; + }; formatter = self.legacyPackages.${system}.alejandra; |