modules/kanshi: make hostname specific
This commit is contained in:
parent
da65cc93b8
commit
ad6be150a3
|
@ -1,7 +1,17 @@
|
||||||
{
|
{ nixosConfig, ... }:
|
||||||
services.kanshi = {
|
let
|
||||||
enable = true;
|
machines = {
|
||||||
profiles = {
|
milhouse = {
|
||||||
|
"laptop" = {
|
||||||
|
outputs = [
|
||||||
|
{
|
||||||
|
criteria = "eDP-1";
|
||||||
|
scale = 1.0;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
jimbo = {
|
||||||
"laptop" = {
|
"laptop" = {
|
||||||
outputs = [
|
outputs = [
|
||||||
{
|
{
|
||||||
|
@ -31,5 +41,12 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
in
|
||||||
|
{
|
||||||
|
services.kanshi = {
|
||||||
|
enable = true;
|
||||||
|
#profiles = lookup machines "milhouse";
|
||||||
|
profiles = machines."${nixosConfig.networking.hostName}";
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue