Merge remote-tracking branch 'mors/master'
This commit is contained in:
commit
b8b2575d83
@ -310,9 +310,11 @@ let
|
||||
users = addNames {
|
||||
lass = {
|
||||
pubkey = readFile ../../Zpubkeys/lass.ssh.pub;
|
||||
mail = "lass@mors.retiolum";
|
||||
};
|
||||
uriel = {
|
||||
pubkey = readFile ../../Zpubkeys/uriel.ssh.pub;
|
||||
mail = "uriel@mors.retiolum";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -1,5 +1,8 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
#TODO: implement recursive mode maybe?
|
||||
# enable different mods for files and folders
|
||||
|
||||
let
|
||||
inherit (pkgs)
|
||||
writeScript
|
||||
@ -45,10 +48,6 @@ let
|
||||
'';
|
||||
default = null;
|
||||
};
|
||||
recursive = mkOption {
|
||||
type = bool;
|
||||
default = false;
|
||||
};
|
||||
};
|
||||
}));
|
||||
};
|
||||
@ -85,23 +84,21 @@ let
|
||||
];
|
||||
|
||||
buildPermission = perm:
|
||||
#TODO: create folder maybe
|
||||
#TODO: check if permission is valid
|
||||
if (perm.permission == null) then
|
||||
""
|
||||
else
|
||||
if perm.recursive then
|
||||
"chmod -R ${perm.permission} ${perm.path}"
|
||||
else
|
||||
"chmod ${perm.permission} ${perm.path}"
|
||||
"chmod ${perm.permission} ${perm.path}"
|
||||
;
|
||||
|
||||
buildOwner = perm:
|
||||
#TODO: create folder maybe
|
||||
#TODO: check if owner/group valid
|
||||
if (perm.owner == null) then
|
||||
""
|
||||
else
|
||||
if perm.recursive then
|
||||
"chown -R ${perm.owner} ${perm.path}"
|
||||
else
|
||||
"chown ${perm.owner} ${perm.path}"
|
||||
"chown ${perm.owner} ${perm.path}"
|
||||
;
|
||||
|
||||
in out
|
||||
|
Loading…
Reference in New Issue
Block a user