Evie Litherland-Smith
d26a3c4643
Remove sddm/xserver to use greetd everywhere Currently launching Hyprland directly and starting with lockscreen Replace swaylock with gtklock for more consistency
85 lines
1.9 KiB
Nix
85 lines
1.9 KiB
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
{
|
|
imports = [ ./desktop.nix ];
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
waybar = prev.waybar.overrideAttrs (oldAttrs: {
|
|
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
|
|
});
|
|
})
|
|
];
|
|
environment.systemPackages = with pkgs; [
|
|
libsForQt5.polkit-kde-agent
|
|
xdg-utils
|
|
wlr-randr
|
|
hyprpaper
|
|
pipewire
|
|
wireplumber
|
|
wtype
|
|
wl-clipboard
|
|
grim
|
|
slurp
|
|
swayimg
|
|
pamixer
|
|
pavucontrol
|
|
playerctl
|
|
brightnessctl
|
|
];
|
|
services = {
|
|
blueman.enable = true;
|
|
gvfs.enable = true;
|
|
tumbler.enable = true;
|
|
greetd.settings = rec {
|
|
default_session.command = "Hyprland";
|
|
initial_session = {
|
|
inherit user;
|
|
inherit (default_session) command;
|
|
};
|
|
};
|
|
};
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
# normal fonts
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
font-awesome
|
|
# nerdfonts
|
|
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
|
# icon fonts
|
|
material-symbols
|
|
emacs-all-the-icons-fonts
|
|
material-design-icons
|
|
weather-icons
|
|
vscode-extensions.file-icons.file-icons
|
|
];
|
|
fontconfig = {
|
|
enable = true;
|
|
# user defined fonts
|
|
# the reason there's Noto Color Emoji everywhere is to override DejaVu's
|
|
# B&W emojis that would sometimes show instead of some Color emojis
|
|
defaultFonts = {
|
|
serif = [ "Noto Serif" "Noto Color Emoji" ];
|
|
sansSerif = [ "Noto Sans" "Noto Color Emoji" ];
|
|
monospace = [ "FiraCode Nerd Font" "Noto Sans" "Noto Color Emoji" ];
|
|
emoji = [ "Noto Color Emoji" ];
|
|
};
|
|
};
|
|
};
|
|
xdg.portal = {
|
|
enable = true;
|
|
extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
|
|
};
|
|
programs = {
|
|
hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
};
|
|
thunar = {
|
|
enable = true;
|
|
plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
|
|
};
|
|
};
|
|
}
|