Added nix on droid

This commit is contained in:
Aleksandr Lebedev 2025-01-06 18:58:09 +01:00
parent dadac02455
commit 14c7d85a57
9 changed files with 195 additions and 18 deletions

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
environment.packages = with pkgs;[
neovim
git
fastfetch
];
home-manager.config = (import home.nix);
system.stateVersion = "24.05";
}