Skip to content

Commit

Permalink
cli: remove bud
Browse files Browse the repository at this point in the history
This has been planned for some time.

It seems necessary to do so now because after updating inputs to track
NixOS 22.05 channels and releases, checks fail unexpectedly, with the
traces leading back to `bud`. Disabling its modules allows checks to
run successfully.

Rather than figuring out what's going wrong with `bud`, it seems more
appropriate to remove it as planned.
  • Loading branch information
montchr committed Jul 9, 2022
1 parent ea2417d commit 14e7ace
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 50 deletions.
2 changes: 0 additions & 2 deletions doc/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
- [Concerns]()
- [Secrets](./secrets.md)
- [Tests](./tests.md)
- [Helper Script – `bud`](./bud/index.md)
- [get](./bud/get.md)
- [Integrations](./integrations/index.md)
- [Cachix](./integrations/cachix.md)
- [Deploy RS](./integrations/deploy.md)
Expand Down
10 changes: 0 additions & 10 deletions doc/bud/get.md

This file was deleted.

24 changes: 0 additions & 24 deletions doc/bud/index.md

This file was deleted.

5 changes: 0 additions & 5 deletions examples/devos/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,4 @@ result
.direnv
doc/index.html

# Result of bud commands
vm
iso
doi

pkgs/_sources/.shake*
6 changes: 0 additions & 6 deletions examples/devos/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@
digga.inputs.home-manager.follows = "home";
digga.inputs.deploy.follows = "deploy";

bud.url = "github:divnix/bud";
bud.inputs.nixpkgs.follows = "nixos";
bud.inputs.devshell.follows = "digga/devshell";

home.url = "github:nix-community/home-manager/release-22.05";
home.inputs.nixpkgs.follows = "nixos";

Expand All @@ -54,7 +50,6 @@
outputs =
{ self
, digga
, bud
, nixos
, home
, nixos-hardware
Expand Down Expand Up @@ -111,7 +106,6 @@
digga.nixosModules.nixConfig
home.nixosModules.home-manager
agenix.nixosModules.age
bud.nixosModules.bud
];
};

Expand Down
4 changes: 1 addition & 3 deletions examples/devos/shell/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{ self, inputs, ... }:
{
modules = with inputs; [
bud.devshellModules.bud
];
modules = with inputs; [];
exportedModules = [
./devos.nix
];
Expand Down

0 comments on commit 14e7ace

Please sign in to comment.