mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
20 lines
385 B
Nix
20 lines
385 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
config = {
|
|
programs.senpai = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { };
|
|
config = {
|
|
address = "irc.libera.chat";
|
|
nickname = "Guest123456";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/senpai/senpai.scfg \
|
|
${./empty-settings-expected.conf}
|
|
'';
|
|
};
|
|
}
|