some changes on stylix

This commit is contained in:
afoucaultc 2026-07-05 16:52:50 +02:00
parent 124f7f478b
commit 4e9ed4eb9f
19 changed files with 92 additions and 73 deletions

View file

@ -1,14 +1,9 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
kitty
rofi
];
xdg.configFile."kitty".source =
config.lib.file.mkOutOfStoreSymlink
"${config.home.homeDirectory}/nixos-config/dotfiles/kitty";
xdg.configFile."inkscape".source =
config.lib.file.mkOutOfStoreSymlink
"${config.home.homeDirectory}/nixos-config/dotfiles/inkscape";
@ -17,8 +12,6 @@
config.lib.file.mkOutOfStoreSymlink
"${config.home.homeDirectory}/nixos-config/dotfiles/rofi";
xdg.configFile."nvim".source = ../../dotfiles/nvim;
xdg.configFile."hypr".source =
config.lib.file.mkOutOfStoreSymlink
"${config.home.homeDirectory}/nixos-config/dotfiles/hypr";

View file

@ -11,6 +11,7 @@
./packages/thunderbird.nix
./packages/git.nix
./packages/hyprland.nix
./packages/kitty.nix
./packages/neovim.nix
./packages/other_apps_light.nix
./packages/texlive.nix
@ -20,4 +21,6 @@
# liens dotfiles
./dotfiles_apps.nix
];
stylix.targets.gtksourceview.enable = false;
stylix.targets.inkscape.enable = false;
}

View file

@ -2,5 +2,7 @@
{
programs.firefox = {
enable = true;
profiles.default = { };
};
stylix.targets.firefox.profileNames = [ "default" ];
}

View file

@ -0,0 +1,6 @@
{ config, pkgs, ... }:
{
programs.kitty = {
enable = true;
};
}

View file

@ -52,7 +52,7 @@
services.gpg-agent = {
enable = true;
pinentry.package = pkgs.pinentry-curses;
pinentry.package = pkgs.pinentry-gnome3;
};
services.protonmail-bridge.enable = true;

View file

@ -1,19 +1,18 @@
{ config, pkgs, ... }:
{
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
# default-bg = "#1e1e2e";
# default-fg = "#cdd6f4";
};
mappings = {
# exemple : "<C-r>" = "reload";
};
};
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
synctex = true;
synctex-edit-modifier = "ctrl";
};
mappings = {
};
};
home.packages = with pkgs; [
zathura
poppler-utils
];
home.packages = with pkgs; [
zathura
poppler-utils
];
}

View file

@ -4,6 +4,8 @@
programs.zen-browser = {
enable = true;
setAsDefaultBrowser = true;
profiles.default = { };
};
stylix.targets.zen-browser.profileNames = [ "default" ];
}