aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorCody Hiar <cody@hiar.ca>2022-06-05 14:12:17 -0600
committerCody Hiar <cody@hiar.ca>2022-06-05 14:12:17 -0600
commit67b9901b6dc0a372c22909dded49967bb26b1f82 (patch)
treed9cc2d0e7579b799631de5c05f9a057fe2945822 /flake.nix
parenta0e0a343aece3864c45eb866a743588f03e7de27 (diff)
Updating syntax
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 4576d9f..0d45aa0 100644
--- a/flake.nix
+++ b/flake.nix
@@ -18,9 +18,9 @@
})
];
};
- in {
+ in rec {
# From nix >= 2.7 the default app syntax changes
- defaultApp.${system} = rec {
+ defaultApp.${system} = {
type = "app";
program = "${packages.${system}.neovimCH}/bin/nvim";
};
@@ -44,5 +44,4 @@
'';
};
};
- };
}