summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-02-12 18:39:54 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-02-15 22:13:57 +0100
commit365a7368718fc52964eb487058a34c7a124e6989 (patch)
tree2f9e0fe71b2edebd0a695d69025430b558da7b74 /flake.nix
parent6ea803da80558e269564c99070e92e285cf977ff (diff)
add pkgs
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 69149df..52d1b15 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,5 +1,8 @@
{
- outputs = { self }: {
+ outputs = { self, flake-utils }: {
nixosModules.personal = import ./modules/nixos;
+ overlays.personal = self: super: {
+ personal = import ./pkgs self;
+ };
};
}