nixcfg/homes/aly/gui.nix
Aly Raffauf eb7640ee46
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
Revert "aly: add planify + kb shortcuts + wm rules"
This reverts commit 85b63fc1ce.
2024-09-19 13:40:17 -04:00

59 lines
1.1 KiB
Nix

self: {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.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;
vsCodium.enable = true;
};
defaultApps = {
enable = true;
fileManager = pkgs.xfce.thunar;
};
services = {
gammastep.enable = true;
randomWallpaper.enable = true;
};
theme = {
enable = true;
borders.radius = 0;
};
};
}