mirror of
https://github.com/Superredstone/nixos.git
synced 2026-06-17 15:24:39 +02:00
51 lines
966 B
Nix
51 lines
966 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.noctalia.homeModules.default
|
|
];
|
|
|
|
home.file = {
|
|
"niri-config" = {
|
|
source = ../assets/niri.kdl;
|
|
target = ".config/niri/config.kdl";
|
|
};
|
|
};
|
|
|
|
programs.noctalia-shell = {
|
|
enable = true;
|
|
settings = ../assets/noctalia.json;
|
|
};
|
|
|
|
gtk = {
|
|
enable = true;
|
|
colorScheme = "dark";
|
|
gtk4.theme = null;
|
|
iconTheme = {
|
|
name = "Papirus";
|
|
package = pkgs.papirus-icon-theme;
|
|
};
|
|
cursorTheme = {
|
|
name = "Bibata-Modern-Classic";
|
|
package = pkgs.bibata-cursors;
|
|
};
|
|
};
|
|
|
|
qt = {
|
|
enable = true;
|
|
style = {
|
|
name = "adwaita-dark";
|
|
};
|
|
};
|
|
|
|
# Fix for steam cursor
|
|
home.file.".local/share/icons/default" = {
|
|
source = "${pkgs.bibata-cursors}/share/icons/Bibata-Modern-Classic/";
|
|
recursive = true;
|
|
};
|
|
|
|
services.udiskie = {
|
|
enable = true;
|
|
settings.program_options.file_manager = "${pkgs.nautilus}/bin/nautilus";
|
|
};
|
|
}
|