nodejs installs
This commit is contained in:
parent
fe66d2b325
commit
c482dc03fd
3 changed files with 24 additions and 2 deletions
19
flake.lock
19
flake.lock
|
@ -35,7 +35,24 @@
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"nixpkgs-23.05": "nixpkgs-23.05"
|
"nixpkgs-23.05": "nixpkgs-23.05",
|
||||||
|
"unstable": "unstable"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"unstable": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1708807242,
|
||||||
|
"narHash": "sha256-sRTRkhMD4delO/hPxxi+XwLqPn8BuUq6nnj4JqLwOu0=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "73de017ef2d18a04ac4bfd0c02650007ccb31c2a",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixos-unstable",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -2,15 +2,17 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
||||||
"nixpkgs-23.05".url = "github:NixOS/nixpkgs/nixos-23.05";
|
"nixpkgs-23.05".url = "github:NixOS/nixpkgs/nixos-23.05";
|
||||||
|
unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ... }@attrs: {
|
outputs = { self, nixpkgs, unstable, ... }@attrs: {
|
||||||
nixosConfigurations."egirls" = nixpkgs.lib.nixosSystem rec {
|
nixosConfigurations."egirls" = nixpkgs.lib.nixosSystem rec {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = let
|
pkgs = let
|
||||||
cfg = {
|
cfg = {
|
||||||
inherit system;
|
inherit system;
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
|
overlays = [ (final: prev: { unstable = import unstable cfg; }) ];
|
||||||
};
|
};
|
||||||
in import nixpkgs cfg;
|
in import nixpkgs cfg;
|
||||||
|
|
||||||
|
|
|
@ -65,4 +65,7 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = let nodejs = pkgs.unstable.nodejs_20;
|
||||||
|
in with pkgs; [ (nodePackages.override { inherit nodejs; }).pnpm nodejs ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue