No Ansible by default
This commit is contained in:
parent
fdf6725dc9
commit
eac22be095
|
@ -97,7 +97,8 @@
|
||||||
vim-pandoc # Pandoc-specific stuff because there's no LSP for it
|
vim-pandoc # Pandoc-specific stuff because there's no LSP for it
|
||||||
vim-pandoc-syntax
|
vim-pandoc-syntax
|
||||||
] ++ lib.optionals config.frogeye.dev.ansible [
|
] ++ lib.optionals config.frogeye.dev.ansible [
|
||||||
ansible-vim # TODO Doesn't have snippets
|
ansible-vim
|
||||||
|
# Doesn't generate snippets, but those are for UltiSnip anyways
|
||||||
];
|
];
|
||||||
extraConfigLua = builtins.readFile ./symbols-outline-nvim.lua;
|
extraConfigLua = builtins.readFile ./symbols-outline-nvim.lua;
|
||||||
extraConfigVim = ''
|
extraConfigVim = ''
|
||||||
|
|
|
@ -47,7 +47,6 @@
|
||||||
config = {
|
config = {
|
||||||
frogeye = {
|
frogeye = {
|
||||||
dev = {
|
dev = {
|
||||||
ansible = lib.mkDefault true;
|
|
||||||
python = lib.mkDefault true;
|
python = lib.mkDefault true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -19,7 +19,9 @@
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
users.geoffrey = { pkgs, ... }: {
|
users.geoffrey = { pkgs, ... }: {
|
||||||
frogeye = config.frogeye;
|
frogeye = lib.mkDefault config.frogeye;
|
||||||
|
# Propagating options that way doesn't seem to conserve priority info,
|
||||||
|
# this is not great. Hopefully mkDefault resolve conflicts.
|
||||||
};
|
};
|
||||||
# Makes VMs able to re-run
|
# Makes VMs able to re-run
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
|
|
Loading…
Reference in a new issue