33 lines
610 B
Nix
33 lines
610 B
Nix
# Wayland home.nix
|
|
{ config, lib, pkgs, inputs, user, ... }:
|
|
{
|
|
imports = [
|
|
./gui.nix
|
|
./dots/foot.nix
|
|
./dots/mako.nix
|
|
./dots/river.nix
|
|
./dots/swappy.nix
|
|
./dots/swaylock.nix
|
|
./dots/waybar.nix
|
|
];
|
|
services.kanshi = {
|
|
enable = true;
|
|
profiles = {
|
|
default = {
|
|
outputs = [
|
|
{
|
|
criteria = "DP-1";
|
|
position = "0,0";
|
|
mode = "2560x1440@164.99Hz";
|
|
}
|
|
{
|
|
criteria = "DP-2";
|
|
position = "2560,0";
|
|
mode = "2560x1440@164.99Hz";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|