dotfiles/home/Kell.nix

27 lines
694 B
Nix
Raw Normal View History

2024-06-02 14:50:05 +02:00
{ inputs, config, pkgs, ... }:
{
imports = [
2024-06-10 16:28:16 +02:00
(import ./utils/desktop.nix { inherit inputs config pkgs; })
2024-06-02 14:50:05 +02:00
];
2024-06-04 22:13:24 +02:00
programs.ssh.matchBlocks."*".identityFile = "/home/server/.secrets/SSH/Kell/id_ed25519";
2024-06-04 01:59:19 +02:00
2024-06-02 14:50:05 +02:00
services.hyprpaper = {
settings = {
wallpaper = [
2024-06-02 16:46:57 +02:00
"DP-3,${./hyprland/files/wallpaper.png}"
"DP-2,${./hyprland/files/wallpaper.png}"
"HDMI-A-1,${./hyprland/files/wallpaper.png}"
2024-06-02 14:50:05 +02:00
];
};
};
2024-06-04 22:27:38 +02:00
wayland.windowManager.hyprland.settings = {
2024-06-13 11:53:29 +02:00
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";
2024-06-04 22:28:19 +02:00
};
2024-06-02 14:50:05 +02:00
}