tweak: kitty settings
This commit is contained in:
parent
b0a50c07dd
commit
2198ddb21e
3 changed files with 92 additions and 14 deletions
51
home.nix
51
home.nix
|
|
@ -1,5 +1,7 @@
|
|||
{ config, pkgs, inputs, ... }:
|
||||
{
|
||||
|
||||
imports = [ inputs.spicetify-nix.homeManagerModules.default ];
|
||||
home.username = "xory";
|
||||
home.homeDirectory = "/home/xory";
|
||||
|
||||
|
|
@ -89,6 +91,7 @@
|
|||
enableCompletion = true;
|
||||
shellAliases = {
|
||||
"rebuild" = "sudo nixos-rebuild switch --flake ~/dots";
|
||||
"spotify" = "${pkgs.firejail}/bin/firejail ${config.programs.spicetify.spicedSpotify}/bin/spotify";
|
||||
};
|
||||
syntaxHighlighting.enable = true;
|
||||
};
|
||||
|
|
@ -101,21 +104,43 @@
|
|||
name = "Inconsolata Nerd Font";
|
||||
package = pkgs.nerd-fonts.inconsolata;
|
||||
};
|
||||
settings.background_opacity = 0.8;
|
||||
settings.background_opacity = 0.95;
|
||||
settings.window_padding_width = 5;
|
||||
};
|
||||
|
||||
programs.spicetify =
|
||||
let
|
||||
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
||||
in
|
||||
{
|
||||
enable = true;
|
||||
|
||||
theme = spicePkgs.themes.catppuccin;
|
||||
colorScheme = "mocha";
|
||||
|
||||
enabledExtensions = with spicePkgs.extensions; [
|
||||
hidePodcasts
|
||||
shuffle
|
||||
betterGenres
|
||||
beautifulLyrics
|
||||
];
|
||||
|
||||
enabledCustomApps = with spicePkgs.apps; [
|
||||
newReleases
|
||||
ncsVisualizer
|
||||
];
|
||||
};
|
||||
|
||||
# TODO: Fix up Neovim
|
||||
# programs.vscode = {
|
||||
# enable = true;
|
||||
# extensions = with pkgs.vscode-extensions; [
|
||||
# catppuccin.catppuccin-vsc
|
||||
# catppuccin.catppuccin-vsc-icons
|
||||
# dbaeumer.vscode-eslint
|
||||
# rust-lang.rust-analyzer
|
||||
# ms-python.python
|
||||
# biomejs.biome
|
||||
# ];
|
||||
# };
|
||||
# firejail
|
||||
xdg.desktopEntries.spotify = {
|
||||
name = "Spotify";
|
||||
genericName = "Music Player";
|
||||
icon = "spotify-client";
|
||||
exec = "${pkgs.firejail}/bin/firejail ${config.programs.spicetify.spicedSpotify}/bin/spotify %U";
|
||||
terminal = false;
|
||||
categories = [ "Audio" "Music" "Player" "AudioVideo" ];
|
||||
mimeType = [ "x-scheme-handler/spotify" ];
|
||||
};
|
||||
|
||||
wayland.windowManager.hyprland.enable = true;
|
||||
programs.waybar.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue