Report built at 2019-10-03 03:26:58 UTC
Built for evals:
| source 'https://rubygems.org' do | |
| gem 'haste' | |
| end |
| { stdenv, fetchzip }: | |
| let | |
| pname = "FiraCode"; | |
| version = "v2.0.0"; | |
| in | |
| stdenv.mkDerivation rec { | |
| name = "${pname}-nerdfont-${version}"; | |
| src = fetchzip { |
Report built at 2019-10-03 03:26:58 UTC
Built for evals:
Report built at 2019-10-06 20:44:28 UTC
Built for evals:
Pantheon is the desktop environment created for the elementary OS distribution. It is written from scratch in Vala, utilizing GNOME technologies with GTK 3 and Granite. All of Pantheon is working in NixOS and the applications should be available, aside from a few exceptions. To enable Pantheon, set
services.xserver.desktopManager.pantheon.enable = true;| diff --git a/nixos/modules/services/desktops/deepin/deepin.nix b/nixos/modules/services/desktops/deepin/deepin.nix | |
| index a69ca8573a7..931bac58ace 100644 | |
| --- a/nixos/modules/services/desktops/deepin/deepin.nix | |
| +++ b/nixos/modules/services/desktops/deepin/deepin.nix | |
| @@ -30,8 +30,6 @@ | |
| config = lib.mkMerge [ | |
| (lib.mkIf config.services.deepin.core.enable { | |
| - programs.dconf.enable = true; | |
| - |
| with import <nixpkgs> {}; | |
| with lib; | |
| let | |
| getDir = (dir: mapAttrs (file: type: | |
| if type == "directory" | |
| then getDir "${dir}/${file}" | |
| else type) | |
| (builtins.readDir dir)); |
| { | |
| // Place your snippets for xml here. Each snippet is defined under a snippet name and has a prefix, body and | |
| // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
| // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
| // same ids are connected. | |
| // Example: | |
| // "Print to console": { | |
| // "prefix": "log", | |
| // "body": [ | |
| // "console.log('$1');", |
| diff --git a/nixos/modules/security/rngd.nix b/nixos/modules/security/rngd.nix | |
| index 5566c53897d..d89f20221dd 100644 | |
| --- a/nixos/modules/security/rngd.nix | |
| +++ b/nixos/modules/security/rngd.nix | |
| @@ -37,6 +37,12 @@ in | |
| after = [ "dev-random.device" ]; | |
| + conflicts = [ "shutdown.target" ]; | |
| + before = [ |