.dotfiles/.config/home-manager/home.nix##hostname.portalo,user.serguzim

23 lines
398 B
Plaintext
Raw Normal View History

2023-01-29 00:57:35 +00:00
{ config, pkgs, ... }:
{
home.username = "serguzim";
home.homeDirectory = "/home/serguzim";
2023-01-29 00:57:35 +00:00
imports = [
./common.nix
./audio.nix
./graphical.nix
./nvim.nix
./wayland.nix
];
2023-03-06 12:14:37 +00:00
home.packages = with pkgs; [
ckb-next # corsair hardware control
#rustdesk # remote desktop tool # disabled for nightly from aur
solaar # Logitech tool
syncthing # file syncing tool
#flatpak
];
2023-01-29 00:57:35 +00:00
}