Compare commits

..

2 Commits

Author SHA1 Message Date
6c094967e3 usbutils
All checks were successful
nix flake show / show-flake (push) Successful in 32s
2025-07-30 11:50:29 +02:00
1635d78674 add corectly chromium 2025-07-30 11:48:56 +02:00
2 changed files with 5 additions and 1 deletions

View File

@ -27,6 +27,7 @@ in
lf
tshark
nixfmt
usbutils
];
};
}

View File

@ -1,4 +1,4 @@
{ lib, config, ... }:
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
@ -11,5 +11,8 @@ in
config = mkIf config.smayzy.chromium.enable {
programs.chromium.enable = true;
environment.systemPackages = with pkgs; [
chromium
];
};
}