mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
34 lines
748 B
Nix
34 lines
748 B
Nix
{ config, pkgs, user, lib, inputs, ... }:
|
|
{
|
|
imports = [
|
|
./git.nix
|
|
./home-default.nix
|
|
];
|
|
|
|
nix = {
|
|
package = pkgs.nixFlakes;
|
|
extraOptions = "experimental-features = nix-command flakes";
|
|
settings.auto-optimise-store = true;
|
|
gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 7d";
|
|
};
|
|
};
|
|
|
|
# Add non-free packages
|
|
nixpkgs.config.allowUnfree = true;
|
|
nixpkgs.overlays = import ../../lib/overlays.nix;
|
|
|
|
# Set your time zone.
|
|
time.timeZone = "America/Los_Angeles";
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
inputs.agenix.packages.x86_64-linux.default
|
|
];
|
|
|
|
# Did you read the comment?
|
|
system.stateVersion = "23.11";
|
|
}
|