This commit is contained in:
Anthony Cicchetti 2024-05-03 10:58:23 -04:00
parent 4db8f8c571
commit 1617fe89cd
9 changed files with 10 additions and 47 deletions

View file

@ -51,7 +51,7 @@
config = {allowUnfree = true;};
overlays = [
nixneovim.overlays.default
(final: prev: {
(_final: prev: {
zjstatus = zjstatus.packages.${prev.system}.default;
})
# emacs-overlay.overlays.default

View file

@ -1,9 +1,4 @@
{
pkgs,
lib,
config,
...
}: {
{...}: {
home.sessionVariables = {
EDITOR = "nvim";
PAGE = "page -q 90000 -z 90000";

View file

@ -1,10 +1,5 @@
{
pkgs,
lib,
config,
...
}: let
inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
{pkgs, ...}: let
inherit (pkgs.stdenv.hostPlatform) isLinux;
systemSpecificPackages =
if isLinux
# include gping because of open bug

View file

@ -1,10 +1,4 @@
{
config,
lib,
pkgs,
system,
...
}: {
{...}: {
home.file.".doom.d/init.el".source = ../../../../emacs/emacs.doom/init.el;
home.file.".doom.d/config.el".source = ../../../../emacs/emacs.doom/config.el;
home.file.".doom.d/packages.el".source = ../../../../emacs/emacs.doom/packages.el;

View file

@ -1,9 +1,4 @@
{
config,
lib,
pkgs,
...
}: {
{pkgs, ...}: {
programs.git = {
enable = true;
# Don't use difftastic on git-diff by default

View file

@ -1,9 +1,4 @@
{
config,
lib,
pkgs,
...
}: {
{...}: {
programs.mise = {
enable = true;
enableZshIntegration = true;

View file

@ -1,9 +1,4 @@
{
config,
lib,
pkgs,
...
}: {
{pkgs, ...}: {
programs.nixneovim = {
enable = true;
defaultEditor = true;

View file

@ -1,10 +1,9 @@
{
config,
lib,
pkgs,
...
}: let
inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
inherit (pkgs.stdenv.hostPlatform) isDarwin;
_1pass_socket =
if isDarwin
then "${config.home.homeDirectory}/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"

View file

@ -1,9 +1,4 @@
{
config,
lib,
pkgs,
...
}: {
{...}: {
programs.starship = {
enable = true;
enableZshIntegration = true;