mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 10:33:55 -05:00
Aly Raffauf
fe6c154f17
Some checks failed
git-mirror / gitlab-sync (push) Has been cancelled
nix-build / default-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-build / slateport-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
71 lines
1.3 KiB
Nix
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 = true;
|
|
};
|
|
|
|
theme = {
|
|
enable = true;
|
|
borders.radius = 0;
|
|
};
|
|
};
|
|
}
|