2019-03-23 02:50:48 +01:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
2019-03-20 02:57:59 +01:00
|
|
|
|
|
2019-02-26 13:44:40 +01:00
|
|
|
|
{
|
2019-03-23 02:50:48 +01:00
|
|
|
|
imports = [
|
|
|
|
|
./hardware-configuration.nix
|
2019-03-20 02:57:59 +01:00
|
|
|
|
];
|
2019-03-23 02:50:48 +01:00
|
|
|
|
|
|
|
|
|
system.autoUpgrade.enable = false;
|
|
|
|
|
|
|
|
|
|
# services.vsftp = {
|
|
|
|
|
# enable = true;
|
|
|
|
|
# ssl_sslv3 = true;
|
|
|
|
|
# forceLocalDataSSL = true;
|
|
|
|
|
# writeEnable = false;
|
|
|
|
|
# userlist = [];
|
|
|
|
|
# };
|
|
|
|
|
services.haveged.enable = true;
|
2019-04-03 00:06:08 +02:00
|
|
|
|
programs.zsh.promptInit = "PROMPT='%(!.%{$fg_bold[red]%}.%{$fg_bold[cyan]%}%n@)%m %{$fg_bold[magenta]%}%(!.%1~.%~) $(git_prompt_info)%_$(prompt_char)%{$reset_color%} '";
|
2019-03-23 02:50:48 +01:00
|
|
|
|
# This value determines the NixOS release with which your system is to be
|
|
|
|
|
# compatible, in order to avoid breaking some software such as database
|
|
|
|
|
# servers. You should change this only after NixOS release notes say you
|
|
|
|
|
# should.
|
2019-04-03 00:06:08 +02:00
|
|
|
|
system.stateVersion = "19.03";
|
2019-03-23 02:50:48 +01:00
|
|
|
|
|
2019-02-26 13:44:40 +01:00
|
|
|
|
}
|