.dotfiles/.config/home-manager/portalo-serguzim.nix
2023-07-06 23:38:19 +02:00

18 lines
261 B
Nix

{ config, pkgs, ... }:
{
home.username = "serguzim";
home.homeDirectory = "/home/serguzim";
imports = [
./common.nix
./graphical.nix
./nvim.nix
./wayland.nix
];
home.packages = with pkgs; [
rustdesk # remote desktop tool
];
}