1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-07 22:03:27 +02:00
home-manager/tests/modules/programs/sbt/user-config-path.nix

40 lines
778 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let
plugins = [{
org = "a";
artifact = "b";
version = "c";
}];
credentials = [{
realm = "a";
host = "b";
user = "c";
passwordCommand = "d";
}];
repositories = [ "local" ];
baseSbtPath = ".config/sbt";
in {
config = {
programs.sbt = {
enable = true;
plugins = plugins;
credentials = credentials;
repositories = repositories;
baseUserConfigPath = ".config/sbt";
package = pkgs.writeScriptBin "sbt" "";
};
nmt.script = ''
assertFileExists "home-files/${baseSbtPath}/1.0/plugins/plugins.sbt"
assertFileExists "home-files/${baseSbtPath}/1.0/credentials.sbt"
assertFileExists "home-files/${baseSbtPath}/repositories"
'';
};
}