treewide: remove unneeded string escapes
(this is to reduce warnings produced by Lix)
This commit is contained in:
parent
0759e0e137
commit
084e7e6df9
3 changed files with 3 additions and 3 deletions
|
|
@ -22,7 +22,7 @@ in
|
|||
|
||||
options = {
|
||||
picture = lib.mkOption {
|
||||
type = with lib.types; nullOr (either path (strMatching "^http(s)?:\/\/.*$"));
|
||||
type = with lib.types; nullOr (either path (strMatching "^http(s)?://.*$"));
|
||||
default = null;
|
||||
example = "/System/Library/Desktop Pictures/Solid Colors/Stone.png";
|
||||
description = ''
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
nmt.script =
|
||||
let
|
||||
goCfgDir = if !pkgs.stdenv.isDarwin then ".config/go" else "Library/Application\ Support/go";
|
||||
goCfgDir = if !pkgs.stdenv.isDarwin then ".config/go" else "Library/Application Support/go";
|
||||
in
|
||||
''
|
||||
assertFileExists "home-files/${goCfgDir}/env"
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
nmt.script =
|
||||
let
|
||||
goCfgDir = if !pkgs.stdenv.isDarwin then ".config/go" else "Library/Application\ Support/go";
|
||||
goCfgDir = if !pkgs.stdenv.isDarwin then ".config/go" else "Library/Application Support/go";
|
||||
in
|
||||
''
|
||||
assertFileExists "home-files/${goCfgDir}/env"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue