fix deprecations

This commit is contained in:
outfoxxed 2025-07-24 20:04:58 -07:00
parent a876339678
commit 405201d388
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
5 changed files with 12 additions and 10 deletions

View file

@ -1,6 +1,6 @@
{ inputs, pkgs, ... }: { { inputs, pkgs, ... }: {
nixpkgs.overlays = [ nixpkgs.overlays = [
inputs.nur.overlay inputs.nur.overlays.default
(final: prev: { (final: prev: {
kwrite = final.kdePackages.callPackage ./kwrite.nix {}; kwrite = final.kdePackages.callPackage ./kwrite.nix {};

View file

@ -1,6 +1,7 @@
{ pkgs, ... }: { { pkgs, ... }: {
i18n.inputMethod = { i18n.inputMethod = {
enabled = "fcitx5"; enable = true;
type = "fcitx5";
fcitx5.addons = with pkgs; [ fcitx5.addons = with pkgs; [
fcitx5-mozc fcitx5-mozc
fcitx5-gtk fcitx5-gtk

View file

@ -184,8 +184,9 @@ in {
profiles = let profiles = let
mkProfile = { name, id, settings, extensions ? [] }: { mkProfile = { name, id, settings, extensions ? [] }: {
inherit id settings name extensions; inherit id settings name;
path = name; path = name;
extensions.packages = extensions;
userChrome = '' userChrome = ''
${builtins.readFile ./hide_drm_nagbar_chrome.css} ${builtins.readFile ./hide_drm_nagbar_chrome.css}
${builtins.readFile ./sideberry_chrome.css} ${builtins.readFile ./sideberry_chrome.css}
@ -240,7 +241,7 @@ in {
settings = modules.base settings = modules.base
// prefgroups.misc.restore-pages; // prefgroups.misc.restore-pages;
extensions = with pkgs.nur.repos.rycee.firefox-addons; with extra-addons; [ extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; with extra-addons; [
ublock-origin ublock-origin
vencord vencord
]; ];

View file

@ -4,11 +4,11 @@
logFile = null; logFile = null;
display = 7; display = 7;
libinput = {
enable = true;
mouse.accelProfile = "flat";
};
displayManager.startx.enable = true; displayManager.startx.enable = true;
}; };
services.libinput = {
enable = true;
mouse.accelProfile = "flat";
};
} }

View file

@ -55,7 +55,7 @@
} }
]; ];
initExtra = '' initContent = ''
# keybinds # keybinds
source ${impurity.link ./keybinds.zsh} source ${impurity.link ./keybinds.zsh}