Remove the pre-defined environment.systemPackages
in infra/common/default.nix
#25
Labels
No labels
blocked
bug
component: fediversity panel
component: nixops4
contributor experience
documentation
estimation high: >3d
estimation low: <2h
estimation mid: <8h
goal: devops
project-management
question
role: sysadmin
security
technical debt
testing
user experience
user story
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Fediversity/Fediversity#25
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
As of today,
infra/common/default.nix
includes the following lines: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
subversion
];
I'm not happy with them and neither is @fricklerhandwerk. I would be up for removing them altogether. The machines are Nix-capable, so if this is for very rare use, one can just
nix run nixpkgs#vim
or something like that, anyway.@kiara > WDYT about this? Important for Procolix devs, or can we remove safely?
@Niols: feel free to remove.
such config was used on git-less nixos machines by @kevin, but that was only under the presumption config changes would need to be done over ssh, rather than from repos checked out locally to then deploy.
in other words this seemed copied from the historical situation, rather than thought out with our present setup in mind.
environment.systemPackages
from VMs #176Awesome; thank you very much for the details :-)