2023-01-29 00:57:35 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2023-09-10 19:41:00 +00:00
|
|
|
home.username = "serguzim";
|
|
|
|
home.homeDirectory = "/home/serguzim";
|
2023-01-29 00:57:35 +00:00
|
|
|
|
2023-09-10 19:41:00 +00:00
|
|
|
imports = [
|
|
|
|
./common.nix
|
|
|
|
./audio.nix
|
|
|
|
./graphical.nix
|
|
|
|
./nvim.nix
|
|
|
|
./wayland.nix
|
2024-10-23 12:28:00 +00:00
|
|
|
./x11.nix
|
2023-09-10 19:41:00 +00:00
|
|
|
];
|
2023-03-06 12:14:37 +00:00
|
|
|
|
2023-09-10 19:41:00 +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
|
2023-09-10 19:41:00 +00:00
|
|
|
#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-09-10 19:41:00 +00:00
|
|
|
];
|
2023-01-29 00:57:35 +00:00
|
|
|
}
|