update vscode

This commit is contained in:
cswimr 2024-12-14 09:08:02 -05:00
parent bc48e2dc28
commit bf9a570ad5
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
3 changed files with 39 additions and 8 deletions

View file

@ -2,6 +2,7 @@
description = "System Configuration @ cswimr 2024";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
staging-next.url = "github:NixOS/nixpkgs/staging-next";
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
@ -57,6 +58,10 @@
];
config.allowUnfree = true;
};
stagingNextPkgs = import inputs.staging-next {
inherit system;
config.allowUnfree = true;
};
in
{
nixosConfigurations = {
@ -65,6 +70,7 @@
specialArgs = {
inherit inputs;
inherit pkgs;
inherit stagingNextPkgs;
system = system;
hostname = "eclipse";
user = user;
@ -129,6 +135,7 @@
extraSpecialArgs = {
inherit inputs;
inherit pkgs;
inherit stagingNextPkgs;
system = system;
hostname = "eclipse";
user = user;