nixos-config/configs/sternchen/packages.nix

21 lines
367 B
Nix
Raw Normal View History

2021-03-05 08:22:35 +01:00
{ config, lib, pkgs, ... }:
let unstable = import <nixpkgs-unstable> { };
in {
# overlay included
#nixpkgs.overlays = [ (import <mozilla-overlay/rust-overlay.nix>) ];
2021-03-05 16:01:24 +01:00
programs.custom.browser.enable = false;
2021-03-05 08:22:35 +01:00
environment.systemPackages = with pkgs; [
2021-03-05 16:01:24 +01:00
nextcloud-client
gimp
inkscape
2021-03-05 08:22:35 +01:00
darktable
keepass
2021-03-05 16:01:24 +01:00
firefox
google-chrome
2021-03-05 08:22:35 +01:00
];
}