Skip to content

Commit 26fe81f

Browse files
committed
feat: add dagger and use-container
1 parent b3feeb8 commit 26fe81f

File tree

3 files changed

+46
-15
lines changed

3 files changed

+46
-15
lines changed

flake.lock

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@
8181

8282
niri.url = "github:sodiboo/niri-flake";
8383
niri.inputs.nixpkgs.follows = "nixpkgs";
84+
85+
dagger.url = "github:dagger/nix";
86+
dagger.inputs.nixpkgs.follows = "nixpkgs";
8487
};
8588

8689
outputs = inputs@{ flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } (import ./flake);

legacy/modules/home-manager/cli.nix

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,27 @@
1-
{ pkgs, ... }:
1+
{ inputs', pkgs, ... }:
22
{
3-
home.packages = with pkgs; [
4-
fd
5-
htop
6-
jq
7-
yq
8-
ripgrep
9-
pistol # For previews in lf
10-
gnumake
11-
gopls
12-
devenv
3+
home.packages =
4+
with pkgs;
5+
[
6+
fd
7+
htop
8+
jq
9+
yq
10+
ripgrep
11+
pistol # For previews in lf
12+
gnumake
13+
gopls
14+
devenv
15+
16+
kubectl
17+
talosctl
18+
flux
19+
]
20+
++ (with inputs'.dagger.packages; [
21+
container-use
22+
dagger
23+
]);
1324

14-
kubectl
15-
talosctl
16-
flux
17-
];
1825
programs = {
1926
gh = {
2027
enable = true;

0 commit comments

Comments
 (0)