From a19244538e81f9be6080ad4f3a665301eaf5df14 Mon Sep 17 00:00:00 2001 From: Mel Date: Sun, 17 Nov 2024 10:43:45 +0100 Subject: Add unconfigured agenix flake Signed-off-by: Mel --- modules/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/common.nix') diff --git a/modules/common.nix b/modules/common.nix index d333ec4..f263fb8 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -62,7 +62,7 @@ environment.systemPackages = (with pkgs; [ file unzip jq dig htop wget - gnupg pinentry-gnome3 age minisign + gnupg pinentry-gnome3 age agenix minisign inetutils arp-scan pciutils lshw lsof inxi iw pmutils acpi acpid sysprof wireshark hardinfo remmina vlc celluloid foliate calibre -- cgit 1.4.1 class='form'>
renard network configurations... again...
summary refs log tree commit diff
blob: 0077090f857f182251a4408846a24baa8b56e143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# compatability files for `nixos-option` and other legacy
# nix tools.
#
# `nixos-option` does not support flakes (as of yet),
# so we need to give it the path to `<nixpkgs>` (this file)
# and to `<nixos-config>` (in `./nixos/default.nix`) which
# then both return the correct outputs from the system flake.
#
# can also be useful for running out-of-tree `shell.nix` and `default.nix`
# files, without creating a custom flake for them and still having them
# get the correct package sets from the system flake configuration.
#
# see here: https://github.com/NixOS/nixpkgs/issues/97855#issuecomment-799925924

{ ... }:

let
  flake = import ./flake-compat.nix { src = ./..; };
in
flake.defaultNix.legacyPackages.${builtins.currentSystem}