[Flake] Move to 26.05
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
vtsls # Language Server
|
||||
vtsls # Language Server
|
||||
eslint # Linter
|
||||
nodePackages.prettier # Formatter
|
||||
prettier # Formatter
|
||||
tailwindcss-language-server # Language server for tailwind CSS
|
||||
];
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
|
||||
programs.eww = {
|
||||
enable = true;
|
||||
configDir = ./config;
|
||||
yuckConfig = "${./config}";
|
||||
scssConfig = "${./config}";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -18,11 +18,16 @@
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
|
||||
# TODO: Switch to the newer LUA config?
|
||||
configType = "hyprlang";
|
||||
|
||||
plugins = [
|
||||
# https://github.com/outfoxxed/hy3
|
||||
pkgs.hyprlandPlugins.hy3
|
||||
# https://github.com/shezdy/hyprsplit
|
||||
pkgs.hyprlandPlugins.hyprsplit
|
||||
# TODO: Fails to build
|
||||
# pkgs.hyprlandPlugins.hyprsplit
|
||||
];
|
||||
|
||||
# Disable systemd because it conflicts with UWSM
|
||||
|
||||
@@ -71,8 +71,12 @@ in
|
||||
gtk3.extraConfig = {
|
||||
gtk-application-prefer-dark-theme = true;
|
||||
};
|
||||
gtk4.extraConfig = {
|
||||
gtk-application-prefer-dark-theme = true;
|
||||
gtk4 = {
|
||||
# Don't use GTK4 themes. See https://stopthemingmy.app/
|
||||
theme = null;
|
||||
extraConfig = {
|
||||
gtk-application-prefer-dark-theme = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -6,6 +6,8 @@
|
||||
vimAlias = true;
|
||||
defaultEditor = true;
|
||||
withNodeJs = true;
|
||||
withRuby = false; # New default as of 26.05, needs explicit change since original config is old.
|
||||
withPython3 = false; # New default as of 26.05, needs explicit change since original config is old.
|
||||
|
||||
extraPackages = with pkgs; [
|
||||
gcc # For treesitter complation
|
||||
|
||||
@@ -14,7 +14,6 @@
|
||||
# System
|
||||
htop
|
||||
btop
|
||||
neofetch
|
||||
psmisc # fuser, killal, pstree
|
||||
|
||||
# Archives
|
||||
|
||||
Reference in New Issue
Block a user