refactor(home): use mkForce for config values and disable stylix targets
This commit is contained in:
@@ -5,18 +5,19 @@
|
|||||||
inputs,
|
inputs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
|
stylix.targets.kitty.enable = false;
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# enable = false;
|
# enable = false;
|
||||||
font = {
|
font = {
|
||||||
# name = "FiraCode Nerd Font Mono";
|
# name = "FiraCode Nerd Font Mono";
|
||||||
# name = "Hasklug Nerd Font Mono";
|
name = "Hasklug Nerd Font Mono";
|
||||||
# name = "Monaspace Krypton Var Light";
|
# name = "Monaspace Krypton Var Light";
|
||||||
size = lib.mkDefault 13;
|
size = lib.mkForce 13;
|
||||||
};
|
};
|
||||||
settings = {
|
settings = {
|
||||||
background_opacity = lib.mkDefault "0.8";
|
background_opacity = lib.mkForce "0.8";
|
||||||
background = lib.mkDefault "#000000";
|
background = lib.mkForce "#000000";
|
||||||
shell = "${pkgs.fish}/bin/fish";
|
shell = "${pkgs.fish}/bin/fish";
|
||||||
hide_window_decorations = "yes";
|
hide_window_decorations = "yes";
|
||||||
cursor_trail = 1;
|
cursor_trail = 1;
|
||||||
@@ -26,7 +27,7 @@
|
|||||||
darwinLaunchOptions = [
|
darwinLaunchOptions = [
|
||||||
"--single-instance"
|
"--single-instance"
|
||||||
];
|
];
|
||||||
themeFile = "Catppuccin-Mocha";
|
themeFile = lib.mkForce "Catppuccin-Mocha";
|
||||||
# package = inputs.nixpkgs-stable.legacyPackages.${device.system}.kitty;
|
# package = inputs.nixpkgs-stable.legacyPackages.${device.system}.kitty;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -143,7 +143,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
theme = lib.mkDefault "Catppuccin Mocha";
|
theme = lib.mkForce "Catppuccin Mocha";
|
||||||
};
|
};
|
||||||
userTasks = let
|
userTasks = let
|
||||||
zed =
|
zed =
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
|
stylix.targets.fish.enable = false;
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
shellAbbrs = {
|
shellAbbrs = {
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
enableNushellIntegration = true;
|
enableNushellIntegration = true;
|
||||||
theme = lib.mkDefault builtins.fromTOML (builtins.readFile "${pkgs.catppuccinThemes.yazi}/themes/mocha.toml");
|
# theme = lib.mkDefault builtins.fromTOML (builtins.readFile "${pkgs.catppuccinThemes.yazi}/themes/mocha.toml");
|
||||||
settings = {
|
settings = {
|
||||||
plugin = {
|
plugin = {
|
||||||
prepend_preloaders = [
|
prepend_preloaders = [
|
||||||
|
|||||||
Reference in New Issue
Block a user