mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-21 15:53:32 +01:00
tests: Test neovim with config
Fixes an issue where previously the home-manager config for neovim wasn't actually being tested.
This commit is contained in:
parent
d75a0fc913
commit
b5b20c7b19
@ -70,7 +70,7 @@ in
|
||||
mountOnMedia = true;
|
||||
};
|
||||
|
||||
xserver = {
|
||||
xserver = mkIf (!container) {
|
||||
enable = true;
|
||||
excludePackages = [ pkgs.xterm ];
|
||||
};
|
||||
|
@ -6,7 +6,15 @@ in
|
||||
|
||||
nodes.machine = { nix-config, ... }: {
|
||||
imports = attrValues {
|
||||
inherit (nix-config.nixosModules) system shell;
|
||||
inherit (nix-config.nixosModules) desktop system shell;
|
||||
|
||||
customConfig = {
|
||||
modules.desktop.container = true;
|
||||
};
|
||||
};
|
||||
|
||||
home-manager.sharedModules = attrValues {
|
||||
inherit (nix-config.homeManagerModules) neovim;
|
||||
};
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user