dotfiles/home/Kell.nix

55 lines
1.6 KiB
Nix
Raw Normal View History

2024-06-02 14:50:05 +02:00
{ inputs, config, pkgs, ... }:
2025-01-28 13:14:05 +01:00
let
2025-02-14 13:14:10 +01:00
fzgo_paths = {
files = [
"/home/user/.dotfiles"
"/home/server/.cache/fzgo/entries/f/|home|server|Workspace"
];
dirs = [
"/home/user/.dotfiles"
"/home/server/.cache/fzgo/entries/d/|home|server|Workspace"
"/home/server/.cache/fzgo/entries/d/|home|server|Storage|Thomas"
"/home/server/.cache/fzgo/entries/d/|home|server|Storage|Shared"
];
};
2025-01-28 13:14:05 +01:00
in
2024-06-02 14:50:05 +02:00
{
2024-09-13 10:45:22 +02:00
imports = [
(import ./utils/desktop.nix { inherit inputs config pkgs; })
2025-01-28 13:14:05 +01:00
(import ./utils/fzgo_links.nix { inherit config pkgs fzgo_paths; })
2024-09-13 10:45:22 +02:00
];
2025-01-28 13:14:05 +01:00
programs.ssh.matchBlocks."*".identityFile = "/home/user/.secrets/SSH/Kell/id_ed25519";
2024-09-13 10:45:22 +02:00
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = ["qemu:///system"];
uris = ["qemu:///system"];
};
};
home.packages = with pkgs; [
distrobox
gnome-disk-utility
2024-12-08 01:11:54 +01:00
moonlight-qt
vscode
];
2024-09-13 10:45:22 +02:00
services.hyprpaper = {
settings = {
wallpaper = [
2024-11-20 13:59:28 +01:00
"DP-1,${./hyprland/files/wallpaper.png}"
2024-09-13 10:45:22 +02:00
"DP-2,${./hyprland/files/wallpaper.png}"
"HDMI-A-1,${./hyprland/files/wallpaper.png}"
];
};
};
wayland.windowManager.hyprland.settings = {
monitor = [
2024-11-20 13:59:28 +01:00
"DP-2,preferred,0x550,1"
"DP-1,preferred,1920x0,1"
2024-09-13 10:45:22 +02:00
"HDMI-A-1,preferred,5760x550,1"
];
input.kb_options = "compose:rctrl, caps:super, altwin:swap_alt_win";
2024-06-02 14:50:05 +02:00
};
}