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

26 lines
437 B
Plaintext
Raw Permalink 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; [
2024-10-04 22:42:21 +00:00
autorestic
2024-10-04 14:05:52 +00:00
cargo # rust
2023-10-29 12:07:07 +00:00
#ckb-next # corsair hardware control
#rustdesk # remote desktop tool # disabled for nightly from aur
solaar # Logitech tool
syncthing # file syncing tool
#flatpak
2024-10-04 14:05:52 +00:00
webhook
];
2023-01-29 00:57:35 +00:00
}