Compare commits
2 Commits
8406979975
...
fdd7831732
| Author | SHA1 | Date | |
|---|---|---|---|
|
fdd7831732
|
|||
|
103efdb7a9
|
10
flake.nix
10
flake.nix
@@ -52,7 +52,15 @@
|
|||||||
let
|
let
|
||||||
my-lib = import ./lib { lib = nixpkgs.lib; };
|
my-lib = import ./lib { lib = nixpkgs.lib; };
|
||||||
|
|
||||||
overlays = [ ];
|
overlays = [
|
||||||
|
(_: prev: {
|
||||||
|
claude-code =
|
||||||
|
(import inputs.nixpkgs-unstable {
|
||||||
|
system = prev.stdenv.hostPlatform.system;
|
||||||
|
config.allowUnfree = true;
|
||||||
|
}).claude-code;
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
mkHost = my-lib.mkHost {
|
mkHost = my-lib.mkHost {
|
||||||
inherit
|
inherit
|
||||||
|
|||||||
@@ -53,6 +53,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
# Boot - Lanzaboote secure boot
|
# Boot - Lanzaboote secure boot
|
||||||
|
boot.kernelParams = [ "btusb.reset=1" ];
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
boot.loader.systemd-boot.enable = lib.mkForce false;
|
boot.loader.systemd-boot.enable = lib.mkForce false;
|
||||||
boot.lanzaboote = {
|
boot.lanzaboote = {
|
||||||
|
|||||||
Reference in New Issue
Block a user