chore(nix): use nixos-unstable-small
This commit is contained in:
parent
8c1d4fca8c
commit
acaa6dc4cf
5 changed files with 15 additions and 8 deletions
|
@ -6,8 +6,8 @@
|
|||
packages',
|
||||
...
|
||||
}: let
|
||||
pkgsUnstable = pkgs.callPackage nodeFlake.inputs.nixpkgs-unstable.outPath {};
|
||||
pkgsMaster = pkgs.callPackage nodeFlake.inputs.nixpkgs-master.outPath {};
|
||||
pkgsMaster = nodeFlake.inputs.nixpkgs-master.${pkgs.system};
|
||||
pkgsUnstableSmall = nodeFlake.inputs.nixpkgs-unstable-small.legacyPackages.${pkgs.system};
|
||||
in {
|
||||
imports = [
|
||||
../profiles/common.nix
|
||||
|
@ -40,6 +40,11 @@ in {
|
|||
home.sessionVariables.GOPATH = "$HOME/src/go";
|
||||
home.sessionVariables.PATH = pkgs.lib.concatStringsSep ":" ["$HOME/.local/bin" "$PATH"];
|
||||
|
||||
# required by logseq as of 2023-05-24
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
"electron-20.3.11"
|
||||
];
|
||||
|
||||
home.packages =
|
||||
[]
|
||||
++ (with pkgs; [
|
||||
|
@ -174,8 +179,7 @@ in {
|
|||
# Document Processing and Management
|
||||
mendeley
|
||||
evince
|
||||
pkgsUnstable.logseq
|
||||
# (pkgsUnstable.logseq.override (_: {electron = pkgs.electron_20;}))
|
||||
(logseq.override (_: {electron = pkgs.electron_20;}))
|
||||
|
||||
# File Synchronzation
|
||||
dropbox
|
||||
|
@ -227,7 +231,7 @@ in {
|
|||
# openshot-qt
|
||||
# introduces python: screenkey
|
||||
|
||||
pkgsUnstable.ledger-live-desktop
|
||||
pkgsUnstableSmall.ledger-live-desktop
|
||||
]);
|
||||
|
||||
systemd.user.startServices = true;
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
inherit (import ../lib.nix {}) mkSimpleTrayService;
|
||||
|
||||
nixpkgs-2211 = nodeFlake.inputs.nixpkgs-2211.legacyPackages.${pkgs.system};
|
||||
nixpkgs-unstable-small = nodeFlake.inputs.nixpkgs-unstable-small.legacyPackages.${pkgs.system};
|
||||
nixpkgs-wayland' = repoFlake.inputs.nixpkgs-wayland.packages.${pkgs.system};
|
||||
|
||||
wayprompt = nixpkgs-wayland'.wayprompt;
|
||||
|
@ -60,7 +61,7 @@ in {
|
|||
# xdg-desktop-portal xdg-desktop-portal-wlr
|
||||
# grim
|
||||
|
||||
(signal-desktop.overrideAttrs (old: {
|
||||
(nixpkgs-unstable-small.signal-desktop.overrideAttrs (old: {
|
||||
preFixup = old.preFixup + ''
|
||||
gappsWrapperArgs+=(
|
||||
--add-flags "--enable-features=UseOzonePlatform"
|
||||
|
@ -69,7 +70,7 @@ in {
|
|||
'';
|
||||
}))
|
||||
|
||||
((pkgs.session-desktop.override (old: {
|
||||
((nixpkgs-unstable-small.session-desktop.override (old: {
|
||||
inherit (nixpkgs-2211) appimageTools;
|
||||
}))
|
||||
.overrideAttrs(old: {
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
home.packages = [
|
||||
# required by any bar that has a tray plugin
|
||||
pkgs.libappindicator-gtk3
|
||||
pkgs.libdbusmenu-gtk3
|
||||
];
|
||||
|
||||
programs.waybar = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue