blob: 9f160df5a471a2662f5bf6172badc560bd4e5ddc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# nixos-config - My current NixOS configuration
#
# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of my nixos-config.
#
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
{
mkTest,
extraModules,
pkgs,
...
}:
mkTest {
name = "nvim-neorg";
configuration = {
imports = [
../../../../modules/by-name/nv/nvim/module.nix
../../../../modules/by-name/ni/nixpkgs/module.nix
];
config = {
soispha = {
nixpkgs = {
enable = true;
systemName = "x86_64-linux";
};
programs.nvim = {
enable = true;
shell = pkgs.zsh;
};
};
home-manager.users.soispha = {
imports = [
extraModules.nixvim.homeManagerModule
];
};
};
};
alternateScreen = false;
testData = {
"/home/soispha/repos/notes/general/index.norg" = ./data/index.norg;
"/home/soispha/repos/notes/general/reference.norg" = ./data/reference.norg;
};
description = ./test.desc;
# The golden file is just full of nvim's terminal control sequences. There is no point
# in trying to check it.
hash = null;
}
|