20 lines
367 B
Nix
20 lines
367 B
Nix
{ config, lib, pkgs, ... }:
|
|
let unstable = import <nixpkgs-unstable> { };
|
|
in {
|
|
|
|
# overlay included
|
|
#nixpkgs.overlays = [ (import <mozilla-overlay/rust-overlay.nix>) ];
|
|
|
|
programs.custom.browser.enable = false;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
nextcloud-client
|
|
gimp
|
|
inkscape
|
|
darktable
|
|
keepass
|
|
firefox
|
|
google-chrome
|
|
];
|
|
|
|
}
|