fix: deprecated code after ugrade to 24.11
Some checks failed
/ check (push) Successful in 1m9s
/ build (audiomenu) (push) Successful in 23s
/ build (docs) (push) Successful in 3s
/ build (jpassmenu) (push) Successful in 28s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Failing after 54s
/ build (nvim) (push) Successful in 13s
Some checks failed
/ check (push) Successful in 1m9s
/ build (audiomenu) (push) Successful in 23s
/ build (docs) (push) Successful in 3s
/ build (jpassmenu) (push) Successful in 28s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Failing after 54s
/ build (nvim) (push) Successful in 13s
This commit is contained in:
parent
8aaa0c0910
commit
123fbae06b
4 changed files with 6 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
|||
let
|
||||
system = "x86_64-linux";
|
||||
overlays = builtins.attrValues inputs.self.overlays;
|
||||
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "steam-original" ];
|
||||
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "steam-unwrapped" ];
|
||||
pkgs = import inputs.nixpkgs { inherit system overlays config; };
|
||||
in
|
||||
{
|
||||
|
|
|
@ -58,7 +58,7 @@ in
|
|||
eza = {
|
||||
enable = true;
|
||||
git = true;
|
||||
icons = true;
|
||||
icons = "auto";
|
||||
};
|
||||
# GnuPG
|
||||
gpg = {
|
||||
|
|
|
@ -31,7 +31,8 @@ in
|
|||
lxqt.pcmanfm-qt
|
||||
wl-clipboard
|
||||
# Extra fonts
|
||||
noto-fonts-cjk # Chinese, Japanese and Korean characters
|
||||
noto-fonts-cjk-sans # Chinese, Japanese and Korean characters
|
||||
noto-fonts-cjk-serif # Chinese, Japanese and Korean characters
|
||||
(nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; })
|
||||
])
|
||||
++ lib.optional flatpakEnabled pkgs.flatpak;
|
||||
|
|
|
@ -13,7 +13,7 @@ in
|
|||
config = lib.mkMerge [
|
||||
(lib.mkIf enable {
|
||||
environment.systemPackages = [
|
||||
pkgs.gnome.adwaita-icon-theme
|
||||
pkgs.adwaita-icon-theme
|
||||
pkgs.adwaita-qt
|
||||
pkgs.nordzy-cursor-theme
|
||||
pkgs.pinentry-qt
|
||||
|
@ -88,7 +88,7 @@ in
|
|||
# Consider using darkman like upstream
|
||||
};
|
||||
hardware = {
|
||||
opengl.enable = true;
|
||||
graphics.enable = true;
|
||||
uinput.enable = true;
|
||||
steam-hardware.enable = cfg.steamHardwareSupport;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue