mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-12-13 06:05:19 +01:00
13 lines
237 B
Nix
13 lines
237 B
Nix
|
|
{ config, pkgs, ... }:
|
||
|
|
let
|
||
|
|
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
|
||
|
|
in
|
||
|
|
{
|
||
|
|
environment.systemPackages = with pkgs; [
|
||
|
|
nextcloud-client
|
||
|
|
unstable.syncthing
|
||
|
|
magic-wormhole
|
||
|
|
vdirsyncer
|
||
|
|
];
|
||
|
|
}
|