This commit is contained in:
Aleksandr Lebedev 2025-03-08 14:13:43 +01:00
parent 87d3681b22
commit bed80a26f7
3 changed files with 13 additions and 3 deletions

View file

@ -11,8 +11,8 @@
unstable-pkgs, unstable-pkgs,
... ...
}: }:
let ladybird = unstable-pkgs.ladybird.overrideAttrs(old: { let ladybird = pkgs.ladybird.overrideAttrs(old: {
src = fetchFromGitHub { src = pkgs.fetchFromGitHub {
owner = "LadybirdWebBrowser"; owner = "LadybirdWebBrowser";
repo = "ladybird"; repo = "ladybird";
rev = "f148af0a9399139b85308ae1eacc8f0f738ed26c"; rev = "f148af0a9399139b85308ae1eacc8f0f738ed26c";

View file

@ -16,6 +16,13 @@
../../users/andrej ../../users/andrej
]; ];
services.zerotierone = {
enable = true;
joinNetworks = [
"a09acf0233dccb4a"
];
};
hardware.nvidia.open = lib.mkForce false; hardware.nvidia.open = lib.mkForce false;
hardware.nvidia.package = lib.mkForce config.boot.kernelPackages.nvidiaPackages.stable; hardware.nvidia.package = lib.mkForce config.boot.kernelPackages.nvidiaPackages.stable;
#sops.secrets."ssh_keys/${hwconfig.hostname}" = {}; #sops.secrets."ssh_keys/${hwconfig.hostname}" = {};

View file

@ -7,6 +7,9 @@
}; };
}; };
environment.systemPackages = with pkgs;[ environment.systemPackages = with pkgs;[
(pass.withExtensions (exts: with exts;[pass-otp])) (pass.withExtensions (exts: with exts;[
pass-otp
pass-import
]))
]; ];
} }