deal with update breakage
This commit is contained in:
parent
dcddc4092a
commit
e84ae57f66
25
flake.lock
25
flake.lock
|
@ -22,33 +22,21 @@
|
|||
},
|
||||
"crane": {
|
||||
"inputs": {
|
||||
"flake-compat": [
|
||||
"lanzaboote",
|
||||
"flake-compat"
|
||||
],
|
||||
"flake-utils": [
|
||||
"lanzaboote",
|
||||
"flake-utils"
|
||||
],
|
||||
"nixpkgs": [
|
||||
"lanzaboote",
|
||||
"nixpkgs"
|
||||
],
|
||||
"rust-overlay": [
|
||||
"lanzaboote",
|
||||
"rust-overlay"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1681177078,
|
||||
"narHash": "sha256-ZNIjBDou2GOabcpctiQykEQVkI8BDwk7TyvlWlI4myE=",
|
||||
"lastModified": 1724367763,
|
||||
"narHash": "sha256-LkXQbqWYSEeKeVDWHt702HluW/89bBpYsA6d7FD0gk8=",
|
||||
"owner": "ipetkov",
|
||||
"repo": "crane",
|
||||
"rev": "0c9f468ff00576577d83f5019a66c557ede5acf6",
|
||||
"rev": "3f502002862cdf91debcc49068fc563f00bc894e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "ipetkov",
|
||||
"ref": "v0.18.1",
|
||||
"repo": "crane",
|
||||
"type": "github"
|
||||
}
|
||||
|
@ -346,7 +334,9 @@
|
|||
},
|
||||
"lanzaboote": {
|
||||
"inputs": {
|
||||
"crane": "crane",
|
||||
"crane": [
|
||||
"crane"
|
||||
],
|
||||
"flake-compat": "flake-compat",
|
||||
"flake-parts": "flake-parts",
|
||||
"flake-utils": [
|
||||
|
@ -584,6 +574,7 @@
|
|||
"root": {
|
||||
"inputs": {
|
||||
"artemist": "artemist",
|
||||
"crane": "crane",
|
||||
"darwin": "darwin",
|
||||
"fonts": "fonts",
|
||||
"home-manager": "home-manager",
|
||||
|
|
|
@ -7,6 +7,10 @@
|
|||
url = "git+https://git.mildlyfunctional.gay/artemist/packages.git";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
crane = {
|
||||
url = "github:ipetkov/crane/v0.18.1";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
darwin = {
|
||||
url = "github:lnl7/nix-darwin";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
@ -24,6 +28,7 @@
|
|||
url = "github:nix-community/lanzaboote/v0.3.0";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.flake-utils.follows = "utils";
|
||||
inputs.crane.follows = "crane";
|
||||
};
|
||||
lix = {
|
||||
url = "https://git.lix.systems/lix-project/lix/archive/2.91.1.tar.gz";
|
||||
|
|
|
@ -111,7 +111,7 @@
|
|||
nasin-nanpa
|
||||
|
||||
# Weird symbols
|
||||
(nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; })
|
||||
nerd-fonts.symbols-only
|
||||
]
|
||||
++ (builtins.attrValues pkgs.extraFonts);
|
||||
};
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
apktool
|
||||
binwalk
|
||||
imhex
|
||||
llvm
|
||||
nmap
|
||||
python3Packages.binwalk-full
|
||||
|
||||
ghidra
|
||||
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
../../sets/workstation.nix
|
||||
inputs.nixos-hardware.nixosModules.common-cpu-intel
|
||||
inputs.nixos-hardware.nixosModules.common-pc-laptop
|
||||
inputs.nixos-hardware.nixosModules.common-pc-laptop-acpi_call
|
||||
inputs.nixos-hardware.nixosModules.common-pc-ssd
|
||||
];
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
package = pkgs.postgresql_16;
|
||||
enableJIT = true;
|
||||
|
||||
extraPlugins = with config.services.postgresql.package.pkgs; [ postgis ];
|
||||
extensions = with config.services.postgresql.package.pkgs; [ postgis ];
|
||||
|
||||
ensureUsers = [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue