Compare commits

..
2 Commits
Author SHA1 Message Date
smayzy 6c094967e3 usbutils
nix flake show / show-flake (push) Successful in 32s
2025-07-30 11:50:29 +02:00
smayzy 1635d78674 add corectly chromium 2025-07-30 11:48:56 +02:00
2 changed files with 5 additions and 1 deletions
+1
View File
@@ -27,6 +27,7 @@ in
lf
tshark
nixfmt
usbutils
];
};
}
+4 -1
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
];
};
}