summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2021-01-17 21:14:59 +0100
committerPavol Rusnak <pavol@rusnak.io>2021-01-17 21:40:51 +0100
commit66dc9dbb59f03975a9d2f4940f2f2bf9867e09d6 (patch)
treebad34751b5c1fde00389220d77355d9cedee27ef /nixos/modules
parent50cbe8b51767bb8d3ce61c8c7f9fcffec657c92f (diff)
nixos/modules: stdenv.lib -> lib
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/config/gnu.nix10
-rw-r--r--nixos/modules/installer/tools/nixos-option/default.nix6
-rw-r--r--nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix14
-rw-r--r--nixos/modules/virtualisation/google-compute-image.nix2
4 files changed, 14 insertions, 18 deletions
diff --git a/nixos/modules/config/gnu.nix b/nixos/modules/config/gnu.nix
index 93d130970190..255d9741ba71 100644
--- a/nixos/modules/config/gnu.nix
+++ b/nixos/modules/config/gnu.nix
@@ -1,11 +1,9 @@
{ config, lib, pkgs, ... }:
-with lib;
-
{
options = {
- gnu = mkOption {
- type = types.bool;
+ gnu = lib.mkOption {
+ type = lib.types.bool;
default = false;
description = ''
When enabled, GNU software is chosen by default whenever a there is
@@ -15,7 +13,7 @@ with lib;
};
};
- config = mkIf config.gnu {
+ config = lib.mkIf config.gnu {
environment.systemPackages = with pkgs;
# TODO: Adjust `requiredPackages' from `system-path.nix'.
@@ -26,7 +24,7 @@ with lib;
nano zile
texinfo # for the stand-alone Info reader
]
- ++ stdenv.lib.optional (!stdenv.isAarch32) grub2;
+ ++ lib.optional (!stdenv.isAarch32) grub2;
# GNU GRUB, where available.
diff --git a/nixos/modules/installer/tools/nixos-option/default.nix b/nixos/modules/installer/tools/nixos-option/default.nix
index 753fd92c7bbf..f18f6911c97f 100644
--- a/nixos/modules/installer/tools/nixos-option/default.nix
+++ b/nixos/modules/installer/tools/nixos-option/default.nix
@@ -4,8 +4,8 @@ stdenv.mkDerivation rec {
src = ./.;
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ boost nix ];
- meta = {
- license = stdenv.lib.licenses.lgpl2Plus;
- maintainers = with lib.maintainers; [ chkno ];
+ meta = with lib; {
+ license = licenses.lgpl2Plus;
+ maintainers = with maintainers; [ chkno ];
};
}
diff --git a/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix b/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix
index ec0457bbd583..556f6bbb419a 100644
--- a/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix
+++ b/nixos/modules/services/hardware/sane_extra_backends/brscan4_etc_files.nix
@@ -19,18 +19,16 @@ nix-shell -E 'with import <nixpkgs> { }; brscan4-etc-files.override{netDevices=[
*/
-with lib;
-
let
addNetDev = nd: ''
brsaneconfig4 -a \
name="${nd.name}" \
model="${nd.model}" \
- ${if (hasAttr "nodename" nd && nd.nodename != null) then
+ ${if (lib.hasAttr "nodename" nd && nd.nodename != null) then
''nodename="${nd.nodename}"'' else
''ip="${nd.ip}"''}'';
- addAllNetDev = xs: concatStringsSep "\n" (map addNetDev xs);
+ addAllNetDev = xs: lib.concatStringsSep "\n" (map addNetDev xs);
in
stdenv.mkDerivation {
@@ -61,11 +59,11 @@ stdenv.mkDerivation {
dontStrip = true;
dontPatchELF = true;
- meta = {
+ meta = with lib; {
description = "Brother brscan4 sane backend driver etc files";
homepage = "http://www.brother.com";
- platforms = stdenv.lib.platforms.linux;
- license = stdenv.lib.licenses.unfree;
- maintainers = with stdenv.lib.maintainers; [ jraygauthier ];
+ platforms = platforms.linux;
+ license = licenses.unfree;
+ maintainers = with maintainers; [ jraygauthier ];
};
}
diff --git a/nixos/modules/virtualisation/google-compute-image.nix b/nixos/modules/virtualisation/google-compute-image.nix
index d172ae38fdcf..e2332df611aa 100644
--- a/nixos/modules/virtualisation/google-compute-image.nix
+++ b/nixos/modules/virtualisation/google-compute-image.nix
@@ -43,7 +43,7 @@ in
system.build.googleComputeImage = import ../../lib/make-disk-image.nix {
name = "google-compute-image";
postVM = ''
- PATH=$PATH:${with pkgs; stdenv.lib.makeBinPath [ gnutar gzip ]}
+ PATH=$PATH:${with pkgs; lib.makeBinPath [ gnutar gzip ]}
pushd $out
mv $diskImage disk.raw
tar -Szcf nixos-image-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.raw.tar.gz disk.raw