nix-conf/system/dev/dn-lap/home/default.nix
2026-03-12 14:34:33 +08:00

35 lines
607 B
Nix
Executable file

{
pkgs,
config,
...
}:
let
inherit (config.networking) hostName;
inherit (config.systemConf) username;
in
{
home-manager.users."${username}" = {
home.packages = with pkgs; [
mattermost-desktop
];
services.kanshi.settings = [
{
profile.name = hostName;
profile.outputs = [
{
criteria = "LG Display 0x0665";
position = "0,0";
scale = 1.25;
}
];
}
];
imports = [
../../../../home/presets/basic.nix
../../../../home/user/zellij.nix
./noctalia.nix
];
};
}