Trying to fix nix-on-droid

This commit is contained in:
Andrea Ciceri 2024-11-15 10:06:04 +01:00
parent ef177f1293
commit 827f1d16d9
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg

View file

@ -1,7 +1,9 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
environment.systemPackages = [ environment.systemPackages = with pkgs; [
pkgs.vim helix
vim
git
]; ];
nix.settings.experimental-features = "nix-command flakes"; nix.settings.experimental-features = "nix-command flakes";
@ -10,5 +12,5 @@
services.nix-daemon.enable = true; services.nix-daemon.enable = true;
# nixpkgs.localSystem = "x86_64-darwin"; system.stateVersion = 5;
} }