forked from Fediversity/Fediversity
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ pkgs, ... }:
|
||
|
||
{
|
||
imports = [ ../common ];
|
||
|
||
procolix.vm = {
|
||
name = "vm02179";
|
||
ip4 = "185.206.232.179";
|
||
ip6 = "2a00:51c0:12:1201::179";
|
||
};
|
||
|
||
# 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?
|
||
}
|