.dotfiles/.config/home-manager/portalo-serguzim.nix

18 lines
261 B
Nix
Raw Normal View History

2023-01-29 00:57:35 +00:00
{ config, pkgs, ... }:
{
2023-07-06 21:38:19 +00:00
home.username = "serguzim";
home.homeDirectory = "/home/serguzim";
2023-01-29 00:57:35 +00:00
imports = [
./common.nix
./graphical.nix
2023-04-11 11:08:44 +00:00
./nvim.nix
2023-06-30 18:47:01 +00:00
./wayland.nix
2023-01-29 00:57:35 +00:00
];
2023-03-06 12:14:37 +00:00
home.packages = with pkgs; [
2023-04-28 20:57:49 +00:00
rustdesk # remote desktop tool
2023-03-06 12:14:37 +00:00
];
2023-01-29 00:57:35 +00:00
}