summaryrefslogtreecommitdiff
path: root/parts/packages.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-15 02:40:21 -0500
committerseth <[email protected]>2023-12-15 16:41:13 -0500
commitaad424b4ba9989be4536390749ad0de351dd13ef (patch)
treefe99931dc498d69c8d09d23c4b5aed7661212231 /parts/packages.nix
parent03223e6e6d061a18b66a69092c59e6a0cb6d1d3f (diff)
flake: move nix to folder to nix/
Diffstat (limited to 'parts/packages.nix')
-rw-r--r--parts/packages.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/parts/packages.nix b/parts/packages.nix
deleted file mode 100644
index 4e1ab27..0000000
--- a/parts/packages.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- self,
- inputs,
- ...
-}: {
- perSystem = {
- pkgs,
- system,
- config,
- ...
- }: {
- packages = {
- teawiebot = pkgs.callPackage ./derivation.nix {
- inherit self;
- inherit
- (pkgs.darwin.apple_sdk.frameworks)
- CoreFoundation
- Security
- SystemConfiguration
- ;
-
- naersk = inputs.naersk.lib.${system};
- };
-
- default = config.packages.teawiebot;
- };
- };
-}