nix/user/home/Dasha.nix

13 lines
223 B
Nix
Raw Normal View History

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