1
0
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
Daniel Kempkens fa3e01b192
op: update integration
All checks were successful
Build / build-amd64-linux (push) Successful in 3m28s
Build / build-arm64-linux (push) Successful in 4m37s
2024-02-27 12:02:15 +01:00
Daniel Kempkens 4bac4efaeb
Update deps 2024-02-27 11:58:27 +01:00
3 changed files with 24 additions and 10 deletions

View file

@ -305,11 +305,11 @@
]
},
"locked": {
"lastModified": 1708999279,
"narHash": "sha256-aaI0QIGVBCzQq2ZwBK1T+2nf5+ztwIs5CLjKSxozZCQ=",
"lastModified": 1709030929,
"narHash": "sha256-9F9sTJYmrxjazPY/cTiJhlYSsAyi6dRiArbqY9K2a+M=",
"ref": "refs/heads/master",
"rev": "deed0e274ef9f7fc5839c5ef40606417c8fea563",
"revCount": 725,
"rev": "2abde0e81beb76fe283f5df7dde7edad3cca2238",
"revCount": 726,
"type": "git",
"url": "https://git.kempkens.io/daniel/nix-overlay"
},
@ -372,11 +372,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1708943256,
"narHash": "sha256-K9VeHrhXsigdhNMZ8hqAk7jtRy4ollqhkYYNZqbfssg=",
"lastModified": 1708976803,
"narHash": "sha256-yvRygcySjjSvj5JTaCdo7lPqJ/2mBV2XQ94Oaq/14qw=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "fcea2b6260dd566c28c894b4207a5f2b56c2cba3",
"rev": "548a86b335d7ecd8b57ec617781f5e652ab0c38e",
"type": "github"
},
"original": {

View file

@ -28,8 +28,7 @@
../programs/jq.nix
../programs/texlive.nix
../programs/pandoc.nix
../programs/op.nix
../programs/podman.nix
@ -39,6 +38,10 @@
../programs/eternal-terminal.nix
../programs/streamlink.nix
../programs/texlive.nix
../programs/pandoc.nix
../programs/yt-dlp.nix
];
@ -48,7 +51,6 @@
stateVersion = "22.11";
packages = with pkgs; [
agilebits-op
arp-scan
curlHTTP3
dasel

12
home/programs/op.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, lib, ... }:
let
op = pkgs.agilebits-op;
in
{
home.packages = [ op ];
programs.fish.interactiveShellInit = (lib.mkOrder 200 ''
${op}/bin/op completion fish | source
'');
}