dotfiles/home/Aloria.nix

62 lines
1.7 KiB
Nix
Raw Normal View History

2024-06-04 22:27:38 +02:00
{ inputs, config, pkgs, ... }:
2025-02-01 13:43:19 +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-02-01 13:43:19 +01:00
in
2024-06-04 22:27:38 +02:00
{
2024-09-13 10:46:49 +02:00
imports = [
(import ./utils/desktop.nix { inherit inputs config pkgs; })
2025-02-01 13:43:19 +01:00
(import ./utils/fzgo_links.nix { inherit config pkgs fzgo_paths; })
2024-09-13 10:46:49 +02:00
];
2024-06-10 16:28:16 +02:00
2024-09-13 10:46:49 +02:00
programs.ssh.matchBlocks."*".identityFile = "/home/user/.secrets/SSH/Aloria/id_ed25519";
2024-06-04 22:27:38 +02:00
2024-09-13 10:46:49 +02:00
home.packages = with pkgs; [
2025-01-01 19:48:44 +01:00
jetbrains.pycharm-professional
2024-09-13 23:34:58 +02:00
distrobox
gnome-disk-utility
2024-10-15 00:09:42 +02:00
moonlight-qt
2024-10-22 17:07:46 +02:00
vscode
texliveFull
zed-editor
gnome-power-manager
2024-09-13 10:46:49 +02:00
];
2024-07-10 22:15:25 +02:00
2024-09-13 10:46:49 +02:00
services.hyprpaper = {
settings = {
wallpaper = [
2024-11-05 10:34:27 +01:00
"DP-1,${./hyprland/files/wallpaper.png}"
2024-11-07 12:07:05 +01:00
"DP-5,${./hyprland/files/wallpaper.png}"
2024-12-20 14:54:20 +01:00
"DP-6,${./hyprland/files/wallpaper.png}"
2024-09-13 10:46:49 +02:00
"eDP-1,${./hyprland/files/wallpaper.png}"
];
};
2024-06-04 22:27:38 +02:00
};
2024-09-13 10:46:49 +02:00
wayland.windowManager.hyprland.settings = {
monitor = [
2024-11-05 10:34:27 +01:00
"eDP-1,1920x1080@60,0x0,1"
"DP-1,1920x1080@60,0x-1080,1"
2024-09-13 10:46:49 +02:00
];
bind = [
", XF86PowerOff, exec, ${pkgs.rofi}/bin/rofi -show power-menu -modi power-menu:${
./hyprland/files/rofi-power-menu.sh
2024-06-04 23:11:41 +02:00
}"
2024-09-13 10:46:49 +02:00
];
general.gaps_out = 1;
};
2024-06-04 23:41:05 +02:00
2024-10-22 17:07:46 +02:00
programs.alacritty.settings.font.size = 12;
programs.kitty.font.size = 12;
2024-06-04 22:27:38 +02:00
}