mirror of
https://github.com/zoriya/flake.git
synced 2025-12-06 06:36:19 +00:00
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../../modules/gui/home.nix
|
|
../../modules/wm/home.nix
|
|
];
|
|
services.gnome-keyring.enable = true;
|
|
|
|
home.packages = with pkgs; [
|
|
pamixer
|
|
brightnessctl
|
|
playerctl
|
|
hyprpicker
|
|
|
|
gnome-control-center
|
|
gnome-weather
|
|
wdisplays
|
|
];
|
|
|
|
xdg.configFile."niri/config.kdl".source = ./niri.kdl;
|
|
|
|
services.kanshi = {
|
|
enable = true;
|
|
systemdTarget = "graphical-session.target";
|
|
settings = [
|
|
{
|
|
output.criteria = "eDP-1";
|
|
output.scale = 1.6;
|
|
}
|
|
{
|
|
profile.name = "undocked";
|
|
profile.outputs = [
|
|
{
|
|
criteria = "eDP-1";
|
|
status = "enable";
|
|
}
|
|
];
|
|
}
|
|
{
|
|
profile.name = "docked";
|
|
profile.outputs = [
|
|
{
|
|
criteria = "eDP-1";
|
|
status = "disable";
|
|
}
|
|
{
|
|
criteria = "Dell Inc. DELL S2722QC 2HHZH24";
|
|
# position = "1500,0";
|
|
position = "0,900";
|
|
scale = 1.7;
|
|
}
|
|
{
|
|
criteria = "*";
|
|
position = "0,0";
|
|
scale = 1.4;
|
|
}
|
|
];
|
|
}
|
|
];
|
|
};
|
|
}
|