Compare commits
No commits in common. "5d17ee23ccfd393175ddcf7df9b1889049b371cc" and "bfd7c9c42778f4290c5773b64c23b2532887127d" have entirely different histories.
5d17ee23cc
...
bfd7c9c427
3 changed files with 34 additions and 19 deletions
38
flake.lock
38
flake.lock
|
@ -165,15 +165,18 @@
|
||||||
"lix": {
|
"lix": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1718419213,
|
"lastModified": 1714955862,
|
||||||
"narHash": "sha256-WY7BGnu5PnbK4O8cKKv9kvxwzZIGbIQUQLGPHFXitI0=",
|
"narHash": "sha256-REWlo2RYHfJkxnmZTEJu3Cd/2VM+wjjpPy7Xi4BdDTQ=",
|
||||||
"rev": "253546d5fbf8a5aa60ac8164c1b4f5794dc4e9d1",
|
"ref": "refs/tags/2.90-beta.1",
|
||||||
"type": "tarball",
|
"rev": "b6799ab0374a8e1907a48915d3187e07da41d88c",
|
||||||
"url": "https://git.lix.systems/api/v1/repos/lix-project/lix/archive/253546d5fbf8a5aa60ac8164c1b4f5794dc4e9d1.tar.gz"
|
"revCount": 15501,
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git@git.lix.systems/lix-project/lix"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"type": "tarball",
|
"ref": "refs/tags/2.90-beta.1",
|
||||||
"url": "https://git.lix.systems/lix-project/lix/archive/2.90.0-rc1.tar.gz"
|
"type": "git",
|
||||||
|
"url": "https://git@git.lix.systems/lix-project/lix"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lix-module": {
|
"lix-module": {
|
||||||
|
@ -182,21 +185,25 @@
|
||||||
"flake-utils"
|
"flake-utils"
|
||||||
],
|
],
|
||||||
"flakey-profile": "flakey-profile",
|
"flakey-profile": "flakey-profile",
|
||||||
"lix": "lix",
|
"lix": [
|
||||||
|
"lix"
|
||||||
|
],
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
"nixpkgs"
|
"nixpkgs"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1718778548,
|
"lastModified": 1718778751,
|
||||||
"narHash": "sha256-64lB/NO6AQ6z6EDCemPSYZWX/Qc6Rt04cPia5T5v01g=",
|
"narHash": "sha256-DdcMvX9r29uHMlz7P1Shgs5xZw9WkZ4ObMGYzwROAiw=",
|
||||||
"rev": "29ed1bb67751e5b107d08df35d18dda6d45324e9",
|
"ref": "refs/heads/main",
|
||||||
"type": "tarball",
|
"rev": "909e593ae9f5fe338ab19b4ed9d52bb0ea09bad8",
|
||||||
"url": "https://git.lix.systems/api/v1/repos/lix-project/nixos-module/archive/29ed1bb67751e5b107d08df35d18dda6d45324e9.tar.gz"
|
"revCount": 90,
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.lix.systems/lix-project/nixos-module"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"type": "tarball",
|
"type": "git",
|
||||||
"url": "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0-rc1.tar.gz"
|
"url": "https://git.lix.systems/lix-project/nixos-module"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nix-index-database": {
|
"nix-index-database": {
|
||||||
|
@ -312,6 +319,7 @@
|
||||||
"disko": "disko",
|
"disko": "disko",
|
||||||
"flake-utils": "flake-utils",
|
"flake-utils": "flake-utils",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
|
"lix": "lix",
|
||||||
"lix-module": "lix-module",
|
"lix-module": "lix-module",
|
||||||
"nix-index-database": "nix-index-database",
|
"nix-index-database": "nix-index-database",
|
||||||
"nixos-hardware": "nixos-hardware",
|
"nixos-hardware": "nixos-hardware",
|
||||||
|
|
10
flake.nix
10
flake.nix
|
@ -41,10 +41,16 @@
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lix = {
|
||||||
|
url = "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
|
||||||
lix-module = {
|
lix-module = {
|
||||||
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0-rc1.tar.gz";
|
url = "git+https://git.lix.systems/lix-project/nixos-module";
|
||||||
inputs = {
|
inputs = {
|
||||||
flake-utils.follows = "flake-utils";
|
flake-utils.follows = "flake-utils";
|
||||||
|
lix.follows = "lix";
|
||||||
nixpkgs.follows = "nixpkgs";
|
nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -110,7 +116,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
devShells.default = nixpkgs.legacyPackages.${system}.mkShell {
|
devShell = nixpkgs.legacyPackages.${system}.mkShell {
|
||||||
inherit (self.checks.${system}.pre-commit-check) shellHook;
|
inherit (self.checks.${system}.pre-commit-check) shellHook;
|
||||||
buildInputs = self.checks.${system}.pre-commit-check.enabledPackages;
|
buildInputs = self.checks.${system}.pre-commit-check.enabledPackages;
|
||||||
};
|
};
|
||||||
|
|
|
@ -49,12 +49,15 @@
|
||||||
unstable.cargo-nextest
|
unstable.cargo-nextest
|
||||||
unstable.cargo-watch
|
unstable.cargo-watch
|
||||||
unstable.clippy
|
unstable.clippy
|
||||||
|
unstable.logseq
|
||||||
unstable.rustfmt
|
unstable.rustfmt
|
||||||
|
|
||||||
alejandra
|
alejandra
|
||||||
clang
|
clang
|
||||||
du-dust
|
du-dust
|
||||||
|
element-desktop-wayland
|
||||||
fd
|
fd
|
||||||
|
libllvm
|
||||||
fx
|
fx
|
||||||
gdb
|
gdb
|
||||||
github-cli
|
github-cli
|
||||||
|
@ -64,8 +67,6 @@
|
||||||
hyperfine
|
hyperfine
|
||||||
jq
|
jq
|
||||||
kcachegrind
|
kcachegrind
|
||||||
libclang
|
|
||||||
libllvm
|
|
||||||
linuxPackages.perf
|
linuxPackages.perf
|
||||||
man-pages
|
man-pages
|
||||||
man-pages-posix
|
man-pages-posix
|
||||||
|
|
Loading…
Reference in a new issue