Skip to content

Commit

Permalink
update: .envrc
Browse files Browse the repository at this point in the history
  • Loading branch information
lucernae committed Aug 26, 2023
1 parent fe76433 commit 3e91191
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .envrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use nix

export CI_PROJECT_PATH=lucernae
export NIXPKGS_CHANNEL=nixos-23.05
source_env_if_exists .local.envrc
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
result
result-*

.direnv
.direnv
.local.envrc
15 changes: 15 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,33 @@
inherit system;
overlays = [
(import ./overlay.nix)
(final: prev: {
flakeParameters = {
nixpkgsChannel = "nixos-unstable";
};
})
];
};
pkgs-23-05 = import nixpkgs-23-05 {
inherit system;
overlays = [
(import ./overlay.nix)
(final: prev: {
flakeParameters = {
nixpkgsChannel = "nixos-23.05";
};
})
];
};
pkgs-22-11 = import nixpkgs-22-11 {
inherit system;
overlays = [
(import ./overlay.nix)
(final: prev: {
flakeParameters = {
nixpkgsChannel = "nixos-22.11";
};
})
];
};
in
Expand Down

0 comments on commit 3e91191

Please sign in to comment.