nixfleet/hosts/mbp/configuration.nix
Andrea Ciceri b12f44b548
Edit for Darwin:
- nixpkgs `allowUnfree`
- disabled Emacs as service
- Increased font size
2022-01-19 18:43:44 +01:00

30 lines
530 B
Nix

{ pkgs, home-manager, emacs-overlay, ... }:
{
imports = [
../../users/andreaciceri
];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
};
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
nixpkgs = {
overlays = [ (import ../../pkgs) emacs-overlay.overlay ];
config.allowUnfree = true;
};
nix = {
package = pkgs.nixUnstable;
gc = {
automatic = true;
user = "andreaciceri";
options = "--delete-older-than 3d";
};
};
}