mirror of
https://github.com/davegallant/nix-config
synced 2025-08-05 23:03:40 +00:00
23 lines
553 B
Nix
23 lines
553 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment = { variables = { LANG = "en_US.UTF-8"; }; };
|
|
|
|
networking = { hostName = "demeter"; };
|
|
|
|
# Auto upgrade nix package and the daemon service.
|
|
services.nix-daemon.enable = true;
|
|
nix.package = pkgs.nixFlakes;
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
# https://github.com/nix-community/home-manager/issues/108#issuecomment-340397178
|
|
enableCompletion = false;
|
|
};
|
|
|
|
# Used for backwards compatibility, please read the changelog before changing.
|
|
system.stateVersion = 4;
|
|
}
|