quickshell

This commit is contained in:
tulg 2025-10-24 01:04:30 +03:00
parent 542227d7a8
commit 7d4cff0bed
5 changed files with 207 additions and 40 deletions

View file

@ -11,6 +11,7 @@ in {
imports = [
inputs.zen-browser.homeModules.twilight
inputs.spicetify-nix.homeManagerModules.default
./noctalia.nix
];
# Home Manager settings
nix.nixPath = ["nixpkgs=${inputs.nixpkgs}"];
@ -28,7 +29,7 @@ in {
tmux
fastfetch
btop
spotify
#spotify
pavucontrol
wl-clipboard
hyprcursor
@ -46,7 +47,7 @@ in {
wofi
mako
kitty
vesktop
# vesktop
libsForQt5.qtstyleplugin-kvantum
libsForQt5.qt5ct
rose-pine-kvantum
@ -57,12 +58,13 @@ in {
DisableAppUpdate = true;
DisableTelemetry = true;
};
programs.vesktop.enable = true;
#programs.spicetify = {
# enable = true;
programs.spicetify = {
enable = true;
# theme = spicePkgs.themes.ziro;
# colorScheme = "rose-pine-moon";
#};
};
xdg.configFile."hypr" = {
source = symlink "${dots}/hypr";
@ -113,37 +115,7 @@ in {
userEmail = "tulg@protonmail.ch";
};
# gtk = {
# enable = true;
# theme = {
# name = "Nordic-darker";
# package = pkgs.nordic;
# };
# iconTheme = {
# name = "Papirus-Dark";
# package = pkgs.papirus-icon-theme;
# };
#};
#home.pointerCursor = {
# gtk.enable = true;
# x11.enable = true;
# package = pkgs.bibata-cursors;
# name = "Bibata-Modern-Classic";
# size = 16;
#};
#nixpkgs.config.qt5 = {
# enable = true;
# platformTheme = "qt5ct";
# style = {
# package = pkgs.rose-pine-kvantum;
# name = "Rose-pine";
# };
#};
#
#
home.sessionVariables = {
NIXOS_OZONE_WL = "1"; # hint Electron apps to use Wayland
# GTK_THEME = "rose-pine";

View file

@ -0,0 +1,69 @@
{ pkgs, inputs, ... }:
{
home-manager.users.drfoobar = {
# import the home manager module
imports = [
inputs.noctalia.homeModules.default
];
# configure options
programs.noctalia-shell = {
enable = true;
settings = {
# configure noctalia here; defaults will
# be deep merged with these attributes.
bar = {
density = "compact";
position = "right";
showCapsule = false;
widgets = {
left = [
{
id = "SidePanelToggle";
useDistroLogo = true;
}
{
id = "WiFi";
}
{
id = "Bluetooth";
}
];
center = [
{
hideUnoccupied = false;
id = "Workspace";
labelMode = "none";
}
];
right = [
{
alwaysShowPercentage = false;
id = "Battery";
warningThreshold = 30;
}
{
formatHorizontal = "HH:mm";
formatVertical = "HH mm";
id = "Clock";
useMonospacedFont = true;
usePrimaryColor = true;
}
];
};
};
colorSchemes.predefinedScheme = "Rosepine";
general = {
avatarImage = "/home/drfoobar/.face";
radiusRatio = 0.2;
};
location = {
monthBeforeDay = true;
name = "Bursa";
};
};
# this may also be a string or a path to a JSON file,
# but in this case must include *all* settings.
};
};
}

View file

@ -1,4 +1,60 @@
{pkgs, ...}: {
stylix.enable = true;
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
{ config, pkgs, ... }:
{
fonts.fontconfig.enable = true;
fonts.packages = with pkgs; [
noto-fonts-emoji
fira
fira-sans
fira-code
dejavu_fonts
nerd-fonts.jetbrains-mono
nerd-fonts.iosevka
];
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
fonts = {
serif = {
package = pkgs.fira;
name = "Fira Sans Regular";
};
sansSerif = {
package = pkgs.fira;
name = "Fira Sans Regular";
};
monospace = {
package = pkgs.fira;
name = "Fira Sans Regular";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
sizes = {
applications = 10;
terminal = 10;
desktop = 10;
popups = 10;
};
};
targets.nixvim.enable = false;
targets.qt.enable = true;
# targets.rofi.enable = false;
targets.spicetify.enable = true;
# image = ../../assets/Shogoki.png;
# opacity = {
# desktop = 0.5;
# terminal = 0.9;
# };
};
}