35 lines
993 B
Nix
35 lines
993 B
Nix
{ inputs, config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
(import ./utils/desktop.nix { inherit inputs config pkgs; })
|
|
];
|
|
programs.ssh.matchBlocks."*".identityFile = "/home/server/.secrets/SSH/Kell/id_ed25519";
|
|
|
|
services.hyprpaper = {
|
|
settings = {
|
|
wallpaper = [
|
|
"DP-3,${./hyprland/files/wallpaper.png}"
|
|
"DP-2,${./hyprland/files/wallpaper.png}"
|
|
"HDMI-A-1,${./hyprland/files/wallpaper.png}"
|
|
];
|
|
};
|
|
};
|
|
wayland.windowManager.hyprland.settings = {
|
|
monitor = [
|
|
"DP-3,preferred,0x550,1"
|
|
"DP-2,preferred,1920x0,1"
|
|
"HDMI-A-1,preferred,5760x550,1"
|
|
];
|
|
input.kb_options = "compose:rctrl, caps:super, altwin:swap_alt_win";
|
|
};
|
|
home.file."${config.xdg.configHome}/ags/settings.json".text = builtins.toJSON {
|
|
temperature-cmd = "bash -c 'sensors | grep Tctl | cut -c16-22'";
|
|
};
|
|
home.file."${config.xdg.configHome}/ags/style.css".text = pkgs.lib.mkAfter ''
|
|
window.bar {
|
|
font-size: 1.3em;
|
|
}
|
|
'';
|
|
}
|