Improve configs

This commit is contained in:
Tobias Reisinger 2023-07-06 23:38:19 +02:00
commit eb3067ff29
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
13 changed files with 66 additions and 19 deletions

View file

@ -0,0 +1,17 @@
{ 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
];
}