13 lines
171 B
Nix
13 lines
171 B
Nix
let
|
|
sway = import ./desktop/sway.nix;
|
|
in
|
|
{
|
|
home = {
|
|
sway = sway.home;
|
|
ssh = ./ssh.nix;
|
|
mail = ./mail.nix;
|
|
};
|
|
global = {
|
|
sway = sway.global;
|
|
};
|
|
}
|