nix/user/home/Dasha.nix

13 lines
225 B
Nix
Raw Normal View History

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