fix deprecations
This commit is contained in:
parent
a876339678
commit
405201d388
5 changed files with 12 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
|||
{ inputs, pkgs, ... }: {
|
||||
nixpkgs.overlays = [
|
||||
inputs.nur.overlay
|
||||
inputs.nur.overlays.default
|
||||
|
||||
(final: prev: {
|
||||
kwrite = final.kdePackages.callPackage ./kwrite.nix {};
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
i18n.inputMethod = {
|
||||
enabled = "fcitx5";
|
||||
enable = true;
|
||||
type = "fcitx5";
|
||||
fcitx5.addons = with pkgs; [
|
||||
fcitx5-mozc
|
||||
fcitx5-gtk
|
||||
|
|
|
@ -184,8 +184,9 @@ in {
|
|||
|
||||
profiles = let
|
||||
mkProfile = { name, id, settings, extensions ? [] }: {
|
||||
inherit id settings name extensions;
|
||||
inherit id settings name;
|
||||
path = name;
|
||||
extensions.packages = extensions;
|
||||
userChrome = ''
|
||||
${builtins.readFile ./hide_drm_nagbar_chrome.css}
|
||||
${builtins.readFile ./sideberry_chrome.css}
|
||||
|
@ -240,7 +241,7 @@ in {
|
|||
settings = modules.base
|
||||
// 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
|
||||
vencord
|
||||
];
|
||||
|
|
|
@ -4,11 +4,11 @@
|
|||
logFile = null;
|
||||
display = 7;
|
||||
|
||||
libinput = {
|
||||
displayManager.startx.enable = true;
|
||||
};
|
||||
|
||||
services.libinput = {
|
||||
enable = true;
|
||||
mouse.accelProfile = "flat";
|
||||
};
|
||||
|
||||
displayManager.startx.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -55,7 +55,7 @@
|
|||
}
|
||||
];
|
||||
|
||||
initExtra = ''
|
||||
initContent = ''
|
||||
# keybinds
|
||||
source ${impurity.link ./keybinds.zsh}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue