Compare commits

...

2 commits

Author SHA1 Message Date
Dmitry Voronin e0294e9bd3 Android: Enable pipes. 2024-12-18 17:14:10 +03:00
Dmitry Voronin ef2785fcdb DevShell: Add cloc. 2024-12-18 14:06:03 +03:00
2 changed files with 2 additions and 1 deletions

View file

@ -154,6 +154,7 @@
{
${system}.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
cloc
nixd
nixfmt-rfc-style
nodePackages.prettier

View file

@ -27,7 +27,7 @@ in
config = lib.mkIf cfg.enable {
environment.packages = package.core;
nix.extraOptions = "experimental-features = nix-command flakes";
nix.extraOptions = "experimental-features = nix-command flakes pipe-operators";
system.stateVersion = const.droidStateVersion;
time.timeZone = const.timeZone;
terminal = { inherit (android) font colors; };