25 lines
384 B
Nix
25 lines
384 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
git
|
|
git-crypt
|
|
];
|
|
|
|
nix.settings.experimental-features = "nix-command flakes";
|
|
|
|
services.synergy.client = {
|
|
enable = true;
|
|
serverAddress = "192.168.0.153";
|
|
screenName = "macbook-pro";
|
|
};
|
|
|
|
homebrew = {
|
|
enable = true;
|
|
|
|
casks = [
|
|
{ name = "eloston-chromium"; }
|
|
];
|
|
};
|
|
}
|