chore(deps): update flake deps

This commit is contained in:
dusk 2021-01-22 05:07:01 +03:00
parent fa029efa99
commit e2aa41fc58
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA
3 changed files with 34 additions and 16 deletions

View File

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"cachix": { "cachix": {
"locked": { "locked": {
"lastModified": 1610961382, "lastModified": 1611179033,
"narHash": "sha256-2TH4uX3eUkvkDnhD3BhIGBkag72WqbLUkaFyARWj4iQ=", "narHash": "sha256-NMepSdxJt8mFfgWHUT2o7u2yKZ8l2KD+FWbNDiR8Ufk=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "88f00e7e12d2669583fffd3f33aae01101464386", "rev": "da3378c4aaf2ed350ad14552558fa55bb68d96d3",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -23,11 +23,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1611081391, "lastModified": 1611270612,
"narHash": "sha256-qWkBVbZ8lx9ssoLMjqjVF+LXuxoLrVmCRoPPKdLQ68s=", "narHash": "sha256-tLQWDaKnrRTbkqm1am5fJM/eYNJUt/Mpr+6F7h28wNw=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "3fe2a57b95333659e2ecdeeca3f4009bcf3b30cf", "rev": "2c0e3f61da903613cc316cb992c8c07d92e1d186",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -52,6 +52,22 @@
"type": "github" "type": "github"
} }
}, },
"lldbpkgs": {
"locked": {
"lastModified": 1610289362,
"narHash": "sha256-vAA4Uef2b1mvnRRqONRoSfHaT7okGPi9kEataxE72zs=",
"owner": "oxalica",
"repo": "nixpkgs",
"rev": "871ca2455a75af983dafa16a01de3df09e15c497",
"type": "github"
},
"original": {
"owner": "oxalica",
"ref": "vscode-lldb",
"repo": "nixpkgs",
"type": "github"
}
},
"mynex": { "mynex": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -74,11 +90,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1610970035, "lastModified": 1611238017,
"narHash": "sha256-RTcM4rCOdxQi99jqi+/pnyNGR7K+P7akd+lVcVirTMc=", "narHash": "sha256-gVKmBflbJ9ubDygUjLkzID1/vAVfCPBsjZAtnL/c7eM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "01291474ea9dce1b45c88f1f72d70a32feaa710b", "rev": "6410340ea92be069fd1ae65b1e79494416946dd8",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -99,11 +115,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1611155097, "lastModified": 1611266753,
"narHash": "sha256-d7ZOiQliqPGI/fiT+1/uBnqW+VSvUhXe2w/KRpyJ/D8=", "narHash": "sha256-LLCiMDKavBpeCfzXSEdVW8upAmIuT2cP3eihTBPxvXo=",
"owner": "colemickens", "owner": "colemickens",
"repo": "nixpkgs-wayland", "repo": "nixpkgs-wayland",
"rev": "ac681bdb1d1b88c0dfcc821439a8bd1456b0417a", "rev": "09858469e7d406e8739f2dfa6adb2ef3d074a49b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -116,6 +132,7 @@
"inputs": { "inputs": {
"home": "home", "home": "home",
"impermanence": "impermanence", "impermanence": "impermanence",
"lldbpkgs": "lldbpkgs",
"mynex": "mynex", "mynex": "mynex",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nixpkgsWayland": "nixpkgsWayland" "nixpkgsWayland": "nixpkgsWayland"

View File

@ -1,4 +1,4 @@
inputs@{ home, impermanence, mynex, nixpkgs, self, pkgs, system, ... }: inputs@{ home, impermanence, mynex, nixpkgs, self, pkgs, lldbPkgs, system, ... }:
let let
utils = import ../lib/utils.nix { inherit lib pkgs; }; utils = import ../lib/utils.nix { inherit lib pkgs; };
@ -10,6 +10,7 @@ let
inherit system; inherit system;
specialArgs = { specialArgs = {
inherit lldbPkgs;
usr = { inherit utils; }; usr = { inherit utils; };
util = utils; util = utils;
nixosPersistence = "${impermanence}/nixos.nix"; nixosPersistence = "${impermanence}/nixos.nix";

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, util, ... }: { config, lib, pkgs, lldbPkgs, util, ... }:
let let
inherit (lib) mapAttrs' nameValuePair; inherit (lib) mapAttrs' nameValuePair;
inherit (builtins) readDir; inherit (builtins) readDir;
@ -698,7 +698,7 @@ in
let let
mkExt = n: v: p: s: { name = n; version = v; publisher = p; sha256 = s; }; mkExt = n: v: p: s: { name = n; version = v; publisher = p; sha256 = s; };
in in
pkgs.vscode-utils.extensionsFromVscodeMarketplace [ (pkgs.vscode-utils.extensionsFromVscodeMarketplace [
# Rust # Rust
(mkExt "rust-analyzer" "0.2.441" "matklad" "sha256-aUX2HMMhS9bgTOmGgqZIgs0GBxmbJdr7J6loqwQTZeM=") (mkExt "rust-analyzer" "0.2.441" "matklad" "sha256-aUX2HMMhS9bgTOmGgqZIgs0GBxmbJdr7J6loqwQTZeM=")
(mkExt "even-better-toml" "0.10.0" "tamasfe" "sha256-miJ7gXYavLyJneKOSs+4GaFG4v6ocem2YOWyAUrOfs8=") (mkExt "even-better-toml" "0.10.0" "tamasfe" "sha256-miJ7gXYavLyJneKOSs+4GaFG4v6ocem2YOWyAUrOfs8=")
@ -721,7 +721,7 @@ in
# (mkExt "dance" "0.3.2" "gregoire" "sha256-+g8EXeCkPOPvZ60JoXkGTeSXYWrXmKrcbUaEfDppdgA=") # (mkExt "dance" "0.3.2" "gregoire" "sha256-+g8EXeCkPOPvZ60JoXkGTeSXYWrXmKrcbUaEfDppdgA=")
(mkExt "material-icon-theme" "4.4.0" "PKief" "sha256-yiM+jtc7UW8PQTwmHmXHSSmvYC73GLh/cLYnmYqONdU=") (mkExt "material-icon-theme" "4.4.0" "PKief" "sha256-yiM+jtc7UW8PQTwmHmXHSSmvYC73GLh/cLYnmYqONdU=")
(mkExt "github-vscode-theme" "1.1.5" "github" "sha256-EPAJjM4CbR8MhV+3pm6mC12KzSt2Em6pT+c2HknNntI=") (mkExt "github-vscode-theme" "1.1.5" "github" "sha256-EPAJjM4CbR8MhV+3pm6mC12KzSt2Em6pT+c2HknNntI=")
]; ]) ++ [ lldbPkgs.vscode-extensions.vadimcn.vscode-lldb ];
userSettings = { userSettings = {
"workbench.iconTheme" = "material-icon-theme"; "workbench.iconTheme" = "material-icon-theme";
"workbench.colorTheme" = "GitHub Dark"; "workbench.colorTheme" = "GitHub Dark";