26 lines
449 B
Text
26 lines
449 B
Text
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "serguzim";
|
|
home.homeDirectory = "/home/serguzim";
|
|
|
|
imports = [
|
|
./common.nix
|
|
./audio.nix
|
|
./graphical.nix
|
|
./nvim.nix
|
|
./wayland.nix
|
|
./x11.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
autorestic
|
|
cargo # rust
|
|
#ckb-next # corsair hardware control
|
|
#rustdesk # remote desktop tool # disabled for nightly from aur
|
|
solaar # Logitech tool
|
|
syncthing # file syncing tool
|
|
#flatpak
|
|
webhook
|
|
];
|
|
}
|