chore(flake): update nixpkgs and stylix to 25.11, update dependencies and disable stylix for tsuba
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled

This commit is contained in:
uttarayan21
2026-01-04 08:52:09 +05:30
parent 741cfc163e
commit 99b4fb3ad1
7 changed files with 71 additions and 83 deletions

View File

@@ -4,8 +4,8 @@
device,
config,
...
}: {
stylix.targets.fish.enable = false;
}:
{
programs.fish = {
enable = true;
shellAbbrs = {
@@ -41,3 +41,6 @@
'';
};
}
// lib.optionalAttrs (!(device.is "tsuba")) {
stylix.targets.fish.enable = false;
}

View File

@@ -4,8 +4,8 @@
stablePkgs,
lib,
...
}: {
stylix.targets.nixvim.enable = false;
}:
{
programs = lib.optionalAttrs (device.is "ryu" || device.is "kuro" || device.is "mirai" || device.is "tako" || device.is "shiro") {
nixvim =
{
@@ -19,3 +19,6 @@
// (import ./../../neovim {inherit pkgs stablePkgs;});
};
}
// lib.optionalAttrs (!(device.is "tsuba")) {
stylix.targets.nixvim.enable = false;
}

View File

@@ -3,8 +3,8 @@
lib,
device,
...
}: {
stylix.targets.starship.enable = false;
}:
{
programs.starship = {
enable = true;
enableFishIntegration = true;
@@ -30,3 +30,6 @@
(pkgs.catppuccinThemes.starship + /palettes/${flavour}.toml));
};
}
// lib.optionalAttrs (!(device.is "tsuba")) {
stylix.targets.starship.enable = false;
}