2024-10-15 02:40:43 -04:00
|
|
|
{ config, pkgs, ... }:
|
2024-10-12 19:41:05 -04:00
|
|
|
{
|
2024-10-09 03:36:08 -04:00
|
|
|
nix = {
|
|
|
|
settings = {
|
|
|
|
experimental-features = "nix-command flakes";
|
|
|
|
auto-optimise-store = true;
|
|
|
|
};
|
|
|
|
gc = {
|
|
|
|
automatic = true;
|
|
|
|
dates = "weekly";
|
|
|
|
options = "--delete-older-than 1w";
|
|
|
|
};
|
2024-10-07 11:42:34 -04:00
|
|
|
};
|
|
|
|
|
2024-10-15 02:40:43 -04:00
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
|
|
|
time.timeZone = "America/Toronto";
|
2024-10-07 11:42:34 -04:00
|
|
|
|
|
|
|
programs = {
|
|
|
|
zsh.enable = true;
|
|
|
|
nano.enable = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
documentation = {
|
|
|
|
nixos.enable = false;
|
|
|
|
info.enable = false;
|
|
|
|
};
|
|
|
|
|
2024-10-12 17:35:52 -04:00
|
|
|
console = {
|
|
|
|
font = "${pkgs.terminus_font}/share/consolefonts/ter-u22n.psf.gz";
|
|
|
|
packages = with pkgs; [ terminus_font ];
|
|
|
|
};
|
|
|
|
|
2024-10-07 11:42:34 -04:00
|
|
|
hardware.enableRedistributableFirmware = true;
|
2024-10-12 19:41:05 -04:00
|
|
|
|
|
|
|
system.stateVersion = "24.05";
|
2024-10-07 11:42:34 -04:00
|
|
|
}
|