mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 08:46:25 +00:00
21 lines
391 B
Nix
21 lines
391 B
Nix
|
{ pkgs, ... }: {
|
||
|
imports = [
|
||
|
../services/flatpak.nix
|
||
|
../services/sane.nix
|
||
|
];
|
||
|
|
||
|
# Add some packages to complete the MATE desktop
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
gnome.gucharmap
|
||
|
gnome-firmware
|
||
|
gthumb
|
||
|
usbimager
|
||
|
];
|
||
|
|
||
|
# Enable some programs to provide a complete desktop
|
||
|
programs = {
|
||
|
gnome-disks.enable = true;
|
||
|
seahorse.enable = true;
|
||
|
};
|
||
|
}
|