mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 18:33:55 -05:00
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
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:
parent
c1198d6791
commit
3707a50b67
|
@ -45,7 +45,6 @@
|
|||
fastfetch.enable = true;
|
||||
helix.enable = true;
|
||||
shell.enable = true;
|
||||
tmux.enable = true;
|
||||
yazi.enable = true;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ in {
|
|||
text = ''
|
||||
Thank you,
|
||||
Aly Raffauf
|
||||
https://alyraffauf.com
|
||||
https://aly.raffauflabs.com
|
||||
'';
|
||||
|
||||
showSignature = "append";
|
||||
|
|
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue