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