fix(repo): repair stuff broken by alqages

This commit is contained in:
Artur Manuel 2025-02-11 17:17:28 +00:00
commit 33583e6200
9 changed files with 73 additions and 72 deletions

View file

@ -12,17 +12,19 @@
statix
deadnix
alejandra
neovide
neovim
;
neovim = inputs.painless-neovim.packages.${pkgs.system}.default;
# neovim = inputs.painless-neovim.packages.${pkgs.system}.default;
};
sessionVariables = {EDITOR = "emacs";};
sessionVariables = {EDITOR = "neovide --no-fork";};
};
alqueva = {
programs = {
swaybg = {
enable = true;
wallpaper = inputs.wallpkgs.wallpapers.nord-05.path;
wallpaper = inputs.wallpkgs.wallpapers.nord-manInStreet.path;
};
waybar = {
enable = true;
@ -66,13 +68,6 @@
web.enable = false;
};
rsyncd.enable = true;
emacs = {
enable = true;
package = inputs.pankomacs.lib.mkEmacs {
inherit pkgs;
emacs = pkgs.emacs29-pgtk;
};
};
};
nix.gc.automatic = lib.mkForce false;

View file

@ -1,7 +1,10 @@
{pkgs, ...}: {
{
pkgs,
inputs,
...
}: {
imports = [
./users
./wrappers
./hardware.nix
./disks.nix
./theme.nix
@ -18,6 +21,18 @@
};
};
nixpkgs.overlays = [
inputs.alqages.overlays.default
(
final: _prev: (
builtins.mapAttrs (_: v: final.callPackage v {}) {
amadaluzian-waybar = ./wrappers/waybar;
amadaluzian-foot = ./wrappers/foot;
}
)
)
];
console = {
font = "Lat2-Terminus16";
keyMap = "us";

View file

@ -4,7 +4,7 @@
themeVariants = ["purple"];
tweaks = ["nord"];
};
icon-theme = pkgs.colloid-icon-theme.override {
icon-theme = pkgs.colloid-icon-theme-git.override {
schemeVariants = ["nord"];
colorVariants = ["purple"];
};

View file

@ -293,7 +293,7 @@ binds {
Mod+Shift+Slash { show-hotkey-overlay; }
// Suggested binds for running programs: terminal, app launcher, screen locker.
Mod+T { spawn "foot"; }
Mod+T { spawn "neovide"; }
Mod+D { spawn "rofi" "-show" "drun"; }
// Super+Alt+L { spawn "swaylock"; }
@ -510,4 +510,4 @@ binds {
cursor {
xcursor-theme "Simp1e-Nord-Dark"
xcursor-size 24
}
}

View file

@ -9,8 +9,8 @@
".config/qutebrowser/config.py" = ./configs/qutebrowser/config.py;
".config/qutebrowser/theme" = ./configs/qutebrowser/theme;
".config/vesktop/themes/theme.user.css" = pkgs.fetchurl {
url = "https://raw.githubusercontent.com/BitsExploited/archHypr_dotfiles/refs/heads/main/discord-theme/nord.theme.css";
hash = "sha256-OSw0v1iVn639eSZB9xcqy1QOPRtb+8c4IVUZvr+TC/I=";
url = "https://raw.githubusercontent.com/deathbeam/base16-discord/refs/heads/main/themes/base16-nord.theme.css";
hash = "sha256-LofqgsVl+XKisk/dmb/PpwuLEWdEgchIfIw4xZs6LQw=";
};
".config/vesktop/settings/quickCss.css" = ./configs/vesktop/quickCss.css;
".config/kanshi/" = ./configs/kanshi;
@ -22,12 +22,12 @@
inherit
(pkgs)
wget
vesktop
vesktop-electron32
mpv
imv
amberol
fractal
nicotine-plus
nicotine-plus-libadwaita
nautilus
librewolf
playerctl

View file

@ -1,10 +1,2 @@
{
nixpkgs.overlays = [
(
final: _prev: {
amadaluzian-waybar = final.callPackage ./waybar {};
amadaluzian-foot = final.callPackage ./foot {};
}
)
];
{...}: {
}