nix/user/home/Dasha.nix

15 lines
296 B
Nix
Raw Normal View History

2024-04-06 03:03:58 +03:00
{ const, username, homeDir, util, style, pkgs, setting, key, ... }: {
imports = [
(import ./Default.nix {
2024-04-06 03:03:58 +03:00
username = "dasha";
homeDir = "/home/dasha";
2024-04-06 03:03:58 +03:00
const = const;
key = key;
2024-04-03 02:05:36 +03:00
pkgs = pkgs;
2024-04-06 03:03:58 +03:00
setting = setting;
2024-04-04 13:51:06 +03:00
style = style;
2024-04-06 03:03:58 +03:00
util = util;
})
];
}