apply stylix style to konsole
All checks were successful
Hydra nixosConfigurations.rainbow-resort Hydra build #27429 of nixos-config:pr618:nixosConfigurations.rainbow-resort
Hydra nixosConfigurations.thinkrac Hydra build #27430 of nixos-config:pr618:nixosConfigurations.thinkrac
Hydra nixosConfigurations.oracle-installer Hydra build #27427 of nixos-config:pr618:nixosConfigurations.oracle-installer
Hydra nixosConfigurations.pc-installer Hydra build #27428 of nixos-config:pr618:nixosConfigurations.pc-installer
All checks were successful
Hydra nixosConfigurations.rainbow-resort Hydra build #27429 of nixos-config:pr618:nixosConfigurations.rainbow-resort
Hydra nixosConfigurations.thinkrac Hydra build #27430 of nixos-config:pr618:nixosConfigurations.thinkrac
Hydra nixosConfigurations.oracle-installer Hydra build #27427 of nixos-config:pr618:nixosConfigurations.oracle-installer
Hydra nixosConfigurations.pc-installer Hydra build #27428 of nixos-config:pr618:nixosConfigurations.pc-installer
This commit is contained in:
parent
1e57b15bfe
commit
184884df9e
3 changed files with 15 additions and 3 deletions
|
@ -7,6 +7,7 @@
|
|||
./theming.nix
|
||||
./krdp.nix
|
||||
./gtk-fixes
|
||||
./konsole.nix
|
||||
];
|
||||
programs.plasma.kwin.virtualDesktops = {
|
||||
rows = 3;
|
||||
|
|
8
config/kde/konsole.nix
Normal file
8
config/kde/konsole.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.konsole = {
|
||||
enable = true;
|
||||
defaultProfile = "Stylix";
|
||||
profiles.Stylix.colorScheme = "Stylix";
|
||||
};
|
||||
}
|
|
@ -82,12 +82,13 @@ let
|
|||
in
|
||||
{
|
||||
home-manager.users.root.stylix.targets.kde.enable = lib.mkForce false;
|
||||
home-manager.users.darkkirb =
|
||||
home-manager.users.darkkirb.imports = [
|
||||
{
|
||||
stylix.targets.kde.enable = config.isGraphical;
|
||||
}
|
||||
// (
|
||||
(
|
||||
if config.isGraphical then
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
home.activation.konsolerc = lib.hm.dag.entryAfter [ "stylixLookAndFeel" ] ''
|
||||
PATH="${config.home.path}/bin:$PATH:${pkgs.jq}"
|
||||
|
@ -177,7 +178,9 @@ in
|
|||
}
|
||||
else
|
||||
{ }
|
||||
);
|
||||
)
|
||||
];
|
||||
|
||||
stylix = {
|
||||
enable = system != "riscv64-linux";
|
||||
image = bgPng;
|
||||
|
|
Loading…
Add table
Reference in a new issue