Improve configs

fixes, replace exa with eza, update home-manager version
This commit is contained in:
Tobias Reisinger 2023-09-10 21:41:00 +02:00
commit ccb5e6660e
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
13 changed files with 80 additions and 89 deletions

View file

@ -1,17 +1,22 @@
{ config, pkgs, ... }:
{
home.username = "serguzim";
home.homeDirectory = "/home/serguzim";
home.username = "serguzim";
home.homeDirectory = "/home/serguzim";
imports = [
./common.nix
./graphical.nix
./nvim.nix
./wayland.nix
];
imports = [
./common.nix
./audio.nix
./graphical.nix
./nvim.nix
./wayland.nix
];
home.packages = with pkgs; [
rustdesk # remote desktop tool
];
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
];
}