lock nixpkgs until bashls is fixed
This commit is contained in:
parent
8a2cf44a66
commit
006bb4335b
3 changed files with 17 additions and 15 deletions
19
nix/home-manager/flake.lock
generated
19
nix/home-manager/flake.lock
generated
|
@ -86,11 +86,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1717931644,
|
"lastModified": 1718243258,
|
||||||
"narHash": "sha256-Sz8Wh9cAiD5FhL8UWvZxBfnvxETSCVZlqWSYWaCPyu0=",
|
"narHash": "sha256-abBpj2VU8p6qlRzTU8o22q68MmOaZ4v8zZ4UlYl5YRU=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "3d65009effd77cb0d6e7520b68b039836a7606cf",
|
"rev": "8d5e27b4807d25308dfe369d5a923d87e7dbfda3",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -200,11 +200,11 @@
|
||||||
"poetry2nix": "poetry2nix"
|
"poetry2nix": "poetry2nix"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1717942814,
|
"lastModified": 1718288467,
|
||||||
"narHash": "sha256-hH5+LhWSxuL7t6sLmabXsfdUd5g8l/Gv0cvFzX35rFQ=",
|
"narHash": "sha256-/hcCxvJ9zA7qIzap8NDuXeT6gsiwndc3vjtP0xwwDIQ=",
|
||||||
"owner": "NixNeovim",
|
"owner": "NixNeovim",
|
||||||
"repo": "NixNeovimPlugins",
|
"repo": "NixNeovimPlugins",
|
||||||
"rev": "dfd59a15374e4e4103b7bba84e39b31009a9a8ad",
|
"rev": "c1b8248d6bda2150fe023713156936c801b5a3e6",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -230,16 +230,17 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1718108729,
|
"lastModified": 1718269811,
|
||||||
"narHash": "sha256-HCAhmNoufdQ9cld7nUSSN49MUYjZcgFRUCi5rwNPg+s=",
|
"narHash": "sha256-tUgqGTbLT2F1g+dxUrm0iTk+Xs32i8HOHVh+WAdQehE=",
|
||||||
"owner": "nixOS",
|
"owner": "nixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "e46ce3db0494637b54faa166d437fa6e6d3e2ae3",
|
"rev": "d2679dcbf1a032b0583915a8e3f9faffe936e9f1",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "nixOS",
|
"owner": "nixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
|
"rev": "d2679dcbf1a032b0583915a8e3f9faffe936e9f1",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
# Specify the source of Home Manager and Nixpkgs.
|
# Specify the source of Home Manager and Nixpkgs.
|
||||||
nixpkgs.url = "github:nixOS/nixpkgs";
|
nixpkgs = {url = "github:nixOS/nixpkgs/d2679dcbf1a032b0583915a8e3f9faffe936e9f1";};
|
||||||
flake-utils.url = "github:numtide/flake-utils"; # not directly used, but common source for the several flakes that do use it
|
flake-utils.url = "github:numtide/flake-utils"; # not directly used, but common source for the several flakes that do use it
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager";
|
url = "github:nix-community/home-manager";
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{pkgs, ...}: let
|
{pkgs, ...}: let
|
||||||
inherit (pkgs.stdenv.hostPlatform) isLinux;
|
inherit (pkgs.stdenv.hostPlatform) isLinux;
|
||||||
systemSpecificPackages =
|
systemSpecificPackages = with pkgs;
|
||||||
if isLinux
|
if isLinux
|
||||||
# include gping because of open bug
|
# ncdu (well, all zig packages) don't work on macOS nix right now
|
||||||
then [pkgs.zsh pkgs.racket pkgs.gping pkgs.mold pkgs.zed-editor]
|
then [zsh racket mold ncdu zed-editor]
|
||||||
else [pkgs.keka];
|
else [keka];
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
./git.nix
|
./git.nix
|
||||||
|
@ -25,6 +25,7 @@ in {
|
||||||
clipboard-jh
|
clipboard-jh
|
||||||
colima
|
colima
|
||||||
curl
|
curl
|
||||||
|
devenv
|
||||||
docker-client
|
docker-client
|
||||||
dogdns
|
dogdns
|
||||||
erdtree
|
erdtree
|
||||||
|
@ -38,6 +39,7 @@ in {
|
||||||
gnugrep
|
gnugrep
|
||||||
gnused
|
gnused
|
||||||
gnutar
|
gnutar
|
||||||
|
gping
|
||||||
gql
|
gql
|
||||||
httpstat
|
httpstat
|
||||||
imagemagick
|
imagemagick
|
||||||
|
@ -50,7 +52,6 @@ in {
|
||||||
litecli
|
litecli
|
||||||
magic-wormhole-rs
|
magic-wormhole-rs
|
||||||
martian-mono
|
martian-mono
|
||||||
# ncdu
|
|
||||||
neovide
|
neovide
|
||||||
ov
|
ov
|
||||||
page
|
page
|
||||||
|
|
Loading…
Add table
Reference in a new issue