Compare commits

..

1 commit

Author SHA1 Message Date
f80e8658c7
chore(deps): lock file maintenance
Some checks failed
/ check (nvimDev) (push) Failing after 6s
/ check (nvimHeadless) (push) Successful in 29s
/ check (nvimNoBundledBins) (push) Failing after 2s
/ check (nvimNoLsp) (push) Failing after 3s
/ check (nvimNoTSGrammars) (push) Failing after 2s
/ check (treefmt) (push) Successful in 3s
/ build (audiomenu) (push) Has been skipped
/ build (docs) (push) Has been skipped
/ build (jpassmenu) (push) Has been skipped
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Has been skipped
/ build (nvim) (push) Has been skipped
/ report-size (push) Has been skipped
2025-02-09 11:00:51 +01:00
3 changed files with 24 additions and 25 deletions

View file

@ -1,5 +1,7 @@
{ inputs, ... }: { inputs, ... }:
{ {
flake.overlays.nixvim = inputs.nixvim.overlays.default;
perSystem = perSystem =
{ lib, system, ... }: { lib, system, ... }:
let let

41
flake.lock generated
View file

@ -295,22 +295,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_2": {
"locked": {
"lastModified": 1738797219,
"narHash": "sha256-KRwX9Z1XavpgeSDVM/THdFd6uH8rNm/6R+7kIbGa+2s=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "1da52dd49a127ad74486b135898da2cef8c62665",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixvim": { "nixvim": {
"inputs": { "inputs": {
"devshell": [], "devshell": [],
@ -323,7 +307,9 @@
"home-manager" "home-manager"
], ],
"nix-darwin": [], "nix-darwin": [],
"nixpkgs": "nixpkgs_2", "nixpkgs": [
"unstable"
],
"nuschtosSearch": [], "nuschtosSearch": [],
"treefmt-nix": [ "treefmt-nix": [
"treefmt-nix" "treefmt-nix"
@ -353,10 +339,7 @@
"stylix": "stylix", "stylix": "stylix",
"systems": "systems", "systems": "systems",
"treefmt-nix": "treefmt-nix", "treefmt-nix": "treefmt-nix",
"unstable": [ "unstable": "unstable"
"nixvim",
"nixpkgs"
]
} }
}, },
"stylix": { "stylix": {
@ -485,6 +468,22 @@
"repo": "treefmt-nix", "repo": "treefmt-nix",
"type": "github" "type": "github"
} }
},
"unstable": {
"locked": {
"lastModified": 1739020877,
"narHash": "sha256-mIvECo/NNdJJ/bXjNqIh8yeoSjVLAuDuTUzAo7dzs8Y=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "a79cfe0ebd24952b580b1cf08cd906354996d547",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View file

@ -3,13 +3,10 @@
# A helpful description of your flake # A helpful description of your flake
description = "My NixOS configuration"; description = "My NixOS configuration";
# Trick renovate into accepting this lockfile (see https://github.com/renovatebot/renovate/issues/29721)
# "github:NixOS/nixpkgs/nixos-unstable"
# Flake inputs # Flake inputs
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
unstable.follows = "nixvim/nixpkgs"; unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
# Lix # Lix
lix-module = { lix-module = {
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.92.0.tar.gz"; url = "https://git.lix.systems/lix-project/nixos-module/archive/2.92.0.tar.gz";
@ -38,6 +35,7 @@
nixvim = { nixvim = {
url = "github:nix-community/nixvim"; url = "github:nix-community/nixvim";
inputs = { inputs = {
nixpkgs.follows = "unstable";
home-manager.follows = "home-manager"; home-manager.follows = "home-manager";
flake-parts.follows = "flake-parts"; flake-parts.follows = "flake-parts";
treefmt-nix.follows = "treefmt-nix"; treefmt-nix.follows = "treefmt-nix";