From 934769ba716ba67d5986d2de35574bef63eaf150 Mon Sep 17 00:00:00 2001 From: Emma Thorpe Date: Tue, 17 Jun 2025 13:51:19 +0000 Subject: [PATCH] feat: move work stuff to module --- system/modules/work/flake.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 system/modules/work/flake.nix diff --git a/system/modules/work/flake.nix b/system/modules/work/flake.nix new file mode 100644 index 0000000..26e3bde --- /dev/null +++ b/system/modules/work/flake.nix @@ -0,0 +1,15 @@ +{ + description = "Work items for Nix"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; + }; + + outputs = { self, nixpkgs }: { + + packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello; + + packages.x86_64-linux.default = self.packages.x86_64-linux.hello; + + }; +}