nix: add packages

This commit is contained in:
Julian Mutter 2023-03-28 14:21:27 +02:00
parent 05fee51dc8
commit c72a434f70
2 changed files with 13 additions and 5 deletions

View File

@ -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 = [

View File

@ -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 {