mirror of
https://github.com/zoriya/flake.git
synced 2026-06-06 12:02:58 +00:00
35 lines
558 B
Nix
35 lines
558 B
Nix
# Common file for both nixos and nix-darwin
|
|
{pkgs, ...}: {
|
|
imports = [
|
|
./nix/nix.nix
|
|
];
|
|
nix.package = pkgs.nix;
|
|
services.nix-daemon.enable = true;
|
|
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
docker-compose
|
|
git
|
|
man-pages
|
|
man-pages-posix
|
|
vim
|
|
tmux
|
|
jq
|
|
];
|
|
|
|
programs.zsh.enable = true;
|
|
environment.shells = with pkgs; [zsh];
|
|
|
|
documentation = {
|
|
enable = true;
|
|
man = {
|
|
enable = true;
|
|
};
|
|
info.enable = true;
|
|
};
|
|
}
|