Home Manager : Simplify args merge.
This commit is contained in:
parent
7e28f68444
commit
aca52517b9
|
@ -1,14 +1,8 @@
|
||||||
{ const, username, homeDir, util, style, pkgs, setting, key, ... }: {
|
{ const, util, style, pkgs, setting, key, ... } @args: {
|
||||||
imports = [
|
imports = [
|
||||||
(import ./Default.nix {
|
(import ./Default.nix (args // {
|
||||||
username = "dasha";
|
username = "dasha";
|
||||||
homeDir = "/home/dasha";
|
homeDir = "/home/dasha";
|
||||||
const = const;
|
}))
|
||||||
key = key;
|
|
||||||
pkgs = pkgs;
|
|
||||||
setting = setting;
|
|
||||||
style = style;
|
|
||||||
util = util;
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,8 @@
|
||||||
{ const, username, homeDir, util, style, pkgs, setting, key, ... }: {
|
{ const, util, style, pkgs, setting, key, ... } @args: {
|
||||||
imports = [
|
imports = [
|
||||||
(import ./Default.nix {
|
(import ./Default.nix (args // {
|
||||||
username = "root";
|
username = "root";
|
||||||
homeDir = "/root";
|
homeDir = "/root";
|
||||||
const = const;
|
}))
|
||||||
key = key;
|
|
||||||
pkgs = pkgs;
|
|
||||||
setting = setting;
|
|
||||||
style = style;
|
|
||||||
util = util;
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,8 @@
|
||||||
{ const, username, homeDir, util, style, pkgs, setting, key, ... }: {
|
{ const, util, style, pkgs, setting, key, ... } @args: {
|
||||||
imports = [
|
imports = [
|
||||||
(import ./Default.nix {
|
(import ./Default.nix (args // {
|
||||||
username = "voronind";
|
username = "voronind";
|
||||||
homeDir = "/home/voronind";
|
homeDir = "/home/voronind";
|
||||||
const = const;
|
}))
|
||||||
key = key;
|
|
||||||
pkgs = pkgs;
|
|
||||||
setting = setting;
|
|
||||||
style = style;
|
|
||||||
util = util;
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue