From c72a434f7041d66f1e92caed42a3883e911044a8 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Tue, 28 Mar 2023 14:21:27 +0200 Subject: [PATCH] nix: add packages --- nix/configuration.nix | 8 ++++++++ nix/flake.nix | 10 +++++----- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/nix/configuration.nix b/nix/configuration.nix index d65b54d..537dea0 100644 --- a/nix/configuration.nix +++ b/nix/configuration.nix @@ -132,6 +132,9 @@ hunspellDicts.de_DE hunspellDicts.en_US makemkv + audacity + gnome.cheese + unstable.zoom-us ]; }; @@ -192,6 +195,7 @@ wireguard-tools htop texlive.combined.scheme-medium + texlab usbutils # lsusb pciutils # lspci nixfmt @@ -232,6 +236,10 @@ discord lnav # log analyzing tool fdupes # find and delete duplicate files + digikam + dbeaver + pavucontrol + sqlite ]; nixpkgs.overlays = [ diff --git a/nix/flake.nix b/nix/flake.nix index 4c2b98d..880091b 100644 --- a/nix/flake.nix +++ b/nix/flake.nix @@ -9,12 +9,12 @@ let system = "x86_64-linux"; overlay-unstable = final: prev: { - unstable = nixpkgs-unstable.legacyPackages.${prev.system}; + # unstable = nixpkgs-unstable.legacyPackages.${prev.system}; # use this variant if unfree packages are needed: - # unstable = import nixpkgs-unstable { - # inherit system; - # config.allowUnfree = true; - # }; + unstable = import nixpkgs-unstable { + inherit system; + config.allowUnfree = true; + }; }; in { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {