nixcfg/homes/aly/gui.nix
Aly Raffauf e753b65618
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
aly: disable randomWallpaper
2024-08-29 09:34:14 -04:00

71 lines
1.3 KiB
Nix

self: {
config,
lib,
pkgs,
...
}: {
imports = [
./common.nix
./firefox
./mail
./secrets.nix
./windowManagers
self.homeManagerModules.default
self.inputs.agenix.homeManagerModules.default
self.inputs.nur.hmModules.nur
];
home = {
homeDirectory = "/home/aly";
packages = with pkgs; [
bitwarden-desktop
fractal
nicotine-plus
obsidian
picard
tauon
transmission-remote-gtk
tuba
vesktop
];
stateVersion = "24.05";
username = "aly";
};
programs = {
git.extraConfig.core.editor = "${lib.getExe config.ar.home.apps.zed.package} --wait";
rbw.settings.pinentry = pkgs.pinentry-gnome3;
};
systemd.user.startServices = "legacy"; # Needed for auto-mounting agenix secrets.
ar.home = {
apps = {
chromium.enable = true;
firefox.enable = true;
kitty.enable = true;
tmux.enable = true;
vsCodium.enable = true;
zed.enable = true;
};
defaultApps = {
enable = true;
editor = config.ar.home.apps.zed.package;
fileManager = pkgs.xfce.thunar;
};
services = {
gammastep.enable = true;
randomWallpaper.enable = false;
};
theme = {
enable = true;
borders.radius = 0;
};
};
}