Archived
0
0
Fork 0

update flake lock & fix fwupd on my framework laptop

This commit is contained in:
Daryl Ronningen 2022-12-23 21:07:08 -08:00
parent 7d000aa3d8
commit 9c26b09571
Signed by: Daryl Ronningen
GPG key ID: FD23F0C934A5EC6B
2 changed files with 22 additions and 16 deletions

View file

@ -39,11 +39,11 @@
"utils": "utils" "utils": "utils"
}, },
"locked": { "locked": {
"lastModified": 1671578428, "lastModified": 1671831633,
"narHash": "sha256-YmbpBcPaGz9KE2bC4xPvSdgCSMk0BmS/L3ePvy9TR/M=", "narHash": "sha256-tANQOkJnlqK4M83KvvXFMFrIbR0xkloqXY5ruqzR3kE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "0f8bf4f92efa3c6168705b49a6788abb3612033a", "rev": "d7eee202e597bc7789498a8664082cf0ffedaa8f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -62,11 +62,11 @@
}, },
"locked": { "locked": {
"dir": "contrib", "dir": "contrib",
"lastModified": 1671609539, "lastModified": 1671774992,
"narHash": "sha256-7S2+adWhkH1OlKe9uYKq55PfsjS/H7ijgVa/BFS0mW0=", "narHash": "sha256-Mx4tDYRSnoxGoDOZN4jRPH8HWcuVdDEmIZu/9GNHyWM=",
"owner": "neovim", "owner": "neovim",
"repo": "neovim", "repo": "neovim",
"rev": "c24605a5a08873d0c7161941b0c7d0aba63d1ccc", "rev": "30f606fc602f835fbed869140d3d658e24129c22",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -83,11 +83,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1671610485, "lastModified": 1671783252,
"narHash": "sha256-8N9SV8sUjNBqJK1kqbxZbaPAhPhUWIGmlFtTD/QtO+c=", "narHash": "sha256-6psohOXJUKvLN3D7L+i9MkF2Cr3sbzOFd0/u6bnsIJM=",
"owner": "nix-community", "owner": "nix-community",
"repo": "neovim-nightly-overlay", "repo": "neovim-nightly-overlay",
"rev": "0215ec8d85613f9984f5264ef659bee10190f4e8", "rev": "c43d46e5828d5fd29d39789c2e3b1a81633c9b91",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -98,11 +98,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1671458120, "lastModified": 1671728284,
"narHash": "sha256-2+k/OONN4OF21TeoNjKB5sXVZv6Zvm/uEyQIW9OYCg8=", "narHash": "sha256-u5Tlz4bl2vb9CB+L/A/Xp8F32062vo3K6yl7J9FBXdc=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e37ef84b478fa8da0ced96522adfd956fde9047a", "rev": "7ba7b4599367c07f2f5d1e26151b68a71a1336b2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -114,11 +114,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1671359686, "lastModified": 1671722432,
"narHash": "sha256-3MpC6yZo+Xn9cPordGz2/ii6IJpP2n8LE8e/ebUXLrs=", "narHash": "sha256-ojcZUekIQeOZkHHzR81st7qxX99dB1Eaaq6PU5MNeKc=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "04f574a1c0fde90b51bf68198e2297ca4e7cccf4", "rev": "652e92b8064949a11bc193b90b74cb727f2a1405",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -121,7 +121,7 @@
# Firmware Updater # Firmware Updater
services.fwupd.enable = true; services.fwupd.enable = true;
services.fwupd.enableTestRemote = true; services.fwupd.enableTestRemote = true;
services.fwupd.extraRemotes = [ "lvfs-testing" ]; services.fwupd.extraRemotes = [ "lvfs-testing" ];
# Setup some basic fonts # Setup some basic fonts
@ -132,6 +132,12 @@
fonts = [ pkgs.nerdfonts ]; fonts = [ pkgs.nerdfonts ];
}; };
environment.etc."fwupd/uefi_capsule.conf".text = lib.mkForce ''
[uefi_capsule]
DisableCapsuleUpdateOnDisk=true
OverrideESPMountPoint=/boot/efi
'';
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave # on your system were taken. Its perfectly fine and recommended to leave