infra/tests/support/client.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
295 B
Nix
Raw Normal View History

{
pkgs,
lib,
config,
...
}:
{
imports = [
./global.nix
];
programs.sway = {
enable = true;
};
programs.bash.shellInit = ''
exec sway
'';
networking.interfaces.eth0.ipv4.addresses = [
{
address = "192.168.1.2";
prefixLength = 32;
}
];
}