2024-11-18 12:09:30 +01:00
|
|
|
|
{ pkgs, ... }:
|
2024-11-17 00:46:56 +01:00
|
|
|
|
|
|
|
|
|
{
|
2024-11-20 15:07:09 +01:00
|
|
|
|
imports = [ ../common ];
|
|
|
|
|
|
|
|
|
|
procolix.vm = {
|
|
|
|
|
name = "vm02179";
|
|
|
|
|
ip4 = "185.206.232.179";
|
|
|
|
|
ip6 = "2a00:51c0:12:1201::179";
|
|
|
|
|
};
|
|
|
|
|
|
2024-11-17 00:46:56 +01:00
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "Europe/Amsterdam";
|
|
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
|
|
|
|
|
|
nix = {
|
|
|
|
|
settings.trusted-users = [ "@wheel" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
|
# $ nix search wget
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
(pkgs.vim_configurable.customize {
|
|
|
|
|
name = "vim";
|
|
|
|
|
vimrcConfig.packages.myplugins = with pkgs.vimPlugins; {
|
|
|
|
|
start = [ vim-nix ]; # load plugin on startup
|
|
|
|
|
};
|
|
|
|
|
vimrcConfig.customRC = ''
|
|
|
|
|
" your custom vimrc
|
|
|
|
|
set nocompatible
|
|
|
|
|
set backspace=indent,eol,start
|
|
|
|
|
" Turn on syntax highlighting by default
|
|
|
|
|
syntax on
|
|
|
|
|
" ...
|
|
|
|
|
'';
|
|
|
|
|
})
|
|
|
|
|
wget
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
|
|
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
|
|
|
|
}
|