13 lines
169 B
Nix
13 lines
169 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.packages = with pkgs;[
|
|
neovim
|
|
git
|
|
fastfetch
|
|
];
|
|
|
|
home-manager.config = ./home.nix;
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|