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

25 lines
349 B
Text

{ config, pkgs, ... }:
{
home.username = "serguzim";
home.homeDirectory = "/home/serguzim";
imports = [
./common.nix
./audio.nix
./graphical.nix
./nvim.nix
./wayland.nix
];
home.packages = with pkgs; [
autorestic
cargo # rust
devenv
rustc
solaar # Logitech tool
syncthing # file syncing tool
#flatpak
webhook
];
}