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