summaryrefslogtreecommitdiff
path: root/users/seth/programs/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-11 06:44:34 -0500
committerseth <[email protected]>2023-12-11 06:44:34 -0500
commit8ac8de2593a9f5e3c160f95358b4db75d3a04640 (patch)
tree9d37f6a1c6466ebf944d562dc03081354ed40f5d /users/seth/programs/default.nix
parentc99900f83de5f44797465845fe5ffb83efb286e0 (diff)
systems+seth: add inputs' to module.args; use flake for firefox addons
Diffstat (limited to 'users/seth/programs/default.nix')
-rw-r--r--users/seth/programs/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/users/seth/programs/default.nix b/users/seth/programs/default.nix
index 6ae66d9..93249d2 100644
--- a/users/seth/programs/default.nix
+++ b/users/seth/programs/default.nix
@@ -1,6 +1,6 @@
{
pkgs,
- inputs,
+ inputs',
...
}: {
imports = [
@@ -13,18 +13,16 @@
./vim.nix
];
- home.packages = with pkgs; let
- inherit (stdenv.hostPlatform) system;
- in [
+ home.packages = with pkgs; [
fd
nurl
rclone
restic
- inputs.attic.packages.${system}.attic
+ inputs'.attic.packages.attic
(let
- getchvim = inputs.getchvim.packages.${system}.default;
+ getchvim = inputs'.getchvim.packages.default;
in
# remove desktop file
symlinkJoin {