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, ... }: {
|
{ 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 {};
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
logFile = null;
|
logFile = null;
|
||||||
display = 7;
|
display = 7;
|
||||||
|
|
||||||
libinput = {
|
displayManager.startx.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.libinput = {
|
||||||
enable = true;
|
enable = true;
|
||||||
mouse.accelProfile = "flat";
|
mouse.accelProfile = "flat";
|
||||||
};
|
};
|
||||||
|
|
||||||
displayManager.startx.enable = true;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
initExtra = ''
|
initContent = ''
|
||||||
# keybinds
|
# keybinds
|
||||||
source ${impurity.link ./keybinds.zsh}
|
source ${impurity.link ./keybinds.zsh}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue