aly: simplify hm config
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

This commit is contained in:
Aly Raffauf 2024-09-17 21:31:31 -04:00
parent c1198d6791
commit 3707a50b67
4 changed files with 6 additions and 16 deletions

View file

@ -45,7 +45,6 @@
fastfetch.enable = true;
helix.enable = true;
shell.enable = true;
tmux.enable = true;
yazi.enable = true;
};
};

View file

@ -1,9 +1,4 @@
self: {
config,
lib,
pkgs,
...
}: {
self: {pkgs, ...}: {
imports = [
./common.nix
./firefox
@ -34,11 +29,7 @@ self: {
username = "aly";
};
programs = {
git.extraConfig.core.editor = "${lib.getExe config.ar.home.apps.zed.package} --wait";
rbw.settings.pinentry = pkgs.pinentry-gnome3;
};
programs.rbw.settings.pinentry = pkgs.pinentry-gnome3;
systemd.user.startServices = "legacy"; # Needed for auto-mounting agenix secrets.
ar.home = {
@ -46,14 +37,11 @@ self: {
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;
};

View file

@ -20,7 +20,7 @@ in {
text = ''
Thank you,
Aly Raffauf
https://alyraffauf.com
https://aly.raffauflabs.com
'';
showSignature = "append";

View file

@ -39,6 +39,9 @@
environment.variables.GDK_SCALE = "2";
networking.hostName = "lavaridge";
programs.firefox.policies.Preferences."media.ffmpeg.vaapi.enabled" = lib.mkForce false;
# services.xserver.enable = true;
# services.xserver.displayManager.gdm.enable = true;
# services.xserver.desktopManager.gnome.enable = true;
system.stateVersion = "24.05";
ar = {