18 lines
189 B
Nix
18 lines
189 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
{
|
|
samfelag.modules = {
|
|
|
|
shell = {
|
|
enable = true;
|
|
zsh = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
dev.git.enable = true;
|
|
};
|
|
|
|
}
|