48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [ discord ];
|
|
imports = [
|
|
./waybar/default.nix
|
|
./anyrun/default.nix
|
|
./rofi/default.nix
|
|
./gtk.nix
|
|
./mako.nix
|
|
];
|
|
services = {
|
|
avizo.enable = true;
|
|
syncthing.enable = true;
|
|
udiskie = {
|
|
enable = true;
|
|
notify = true;
|
|
automount = true;
|
|
tray = "never";
|
|
};
|
|
};
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
systemd.enable = true;
|
|
extraConfig = import ./config.nix { inherit config pkgs; };
|
|
};
|
|
xdg = {
|
|
configFile = {
|
|
"hypr/hyprpaper.conf".text = ''
|
|
preload = ${config.stylix.image}
|
|
wallpaper = ,${config.stylix.image}
|
|
'';
|
|
"hypr/extra.conf" = lib.mkDefault { text = ""; };
|
|
};
|
|
mimeApps = rec {
|
|
enable = true;
|
|
defaultApplications = {
|
|
"image/jpeg" = [ "swayimg.desktop" ];
|
|
"image/png" = [ "swayimg.desktop" ];
|
|
"video/mp4" = [ "mpv.desktop" ];
|
|
"text/csv" = [ "calc.desktop" ];
|
|
};
|
|
associations.added = defaultApplications;
|
|
};
|
|
};
|
|
}
|