dotfiles/home/Kell.nix

74 lines
1.8 KiB
Nix
Raw Normal View History

2024-06-02 14:50:05 +02:00
{ inputs, config, pkgs, ... }:
{
imports = [
2024-06-03 16:02:50 +02:00
(import ./common.nix { inherit inputs config pkgs; })
(import ./hyprland { inherit inputs pkgs; })
(import ./waybar { inherit inputs pkgs; })
./rofi
./alacritty
2024-06-03 19:12:42 +02:00
./kitty
2024-06-03 16:02:50 +02:00
./firefox
./ssh
2024-06-03 18:06:35 +02:00
./mpv
2024-06-02 14:50:05 +02:00
];
2024-06-10 12:14:37 +02:00
home.packages = with pkgs; [ telegram-desktop webcord devenv loupe evince ];
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-08 17:31:27 +02:00
gtk = {
enable = true;
theme = {
package = pkgs.gnome.gnome-themes-extra;
name = "Adwaita-dark";
};
iconTheme = {
name = "Papirus";
package = pkgs.papirus-icon-theme;
};
2024-06-02 14:50:05 +02:00
};
2024-06-05 14:31:58 +02:00
programs.waybar.settings.mainBar = {
output = "DP-2";
2024-06-05 18:36:37 +02:00
"custom/temperature".exec = "${pkgs.lm_sensors}/bin/sensors | ${pkgs.gnugrep}/bin/grep Tctl | cut -c16-22";
2024-06-05 14:31:58 +02:00
};
2024-06-04 22:27:38 +02:00
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";
2024-06-04 22:28:19 +02:00
};
2024-06-04 23:11:41 +02:00
programs.waybar.style = ''
* {
font-size: 18px;
font-weight:400;
}
#tray {
padding: 0 14px;
margin-left:4px;
margin-right:4px;
margin-top:2px;
margin-bottom:2px;
}
#workspaces {
margin: 4px 9px;
}
2024-06-05 14:31:58 +02:00
#wireplumber {
2024-06-05 14:36:07 +02:00
background-color: #023269;
2024-06-05 14:31:58 +02:00
}
#tray {
2024-06-05 14:36:07 +02:00
background-color: #1f2430;
2024-06-05 14:31:58 +02:00
}
2024-06-04 23:11:41 +02:00
'';
2024-06-02 14:50:05 +02:00
}