This commit is contained in:
Anthony Cicchetti 2024-05-03 12:48:05 -04:00
parent 1617fe89cd
commit 9833cd25d1
5 changed files with 106 additions and 151 deletions

16
flake.lock generated
View file

@ -39,11 +39,11 @@
"pre-commit-hooks": "pre-commit-hooks" "pre-commit-hooks": "pre-commit-hooks"
}, },
"locked": { "locked": {
"lastModified": 1714390914, "lastModified": 1714719003,
"narHash": "sha256-W5DFIifCjGYJXJzLU3RpqBeqes4zrf0Sr/6rwzTygPU=", "narHash": "sha256-QmbW8glgZ2lk+uYEHVZiFX9Cbv4ARCX/3+6kKfsKf28=",
"owner": "cachix", "owner": "cachix",
"repo": "devenv", "repo": "devenv",
"rev": "34e6461fd76b5f51ad5f8214f5cf22c4cd7a196e", "rev": "4d786c35280e94211b2fb7b50036cc6aeddee320",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -332,12 +332,12 @@
}, },
"nixpkgs_3": { "nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1714253743, "lastModified": 1714635257,
"narHash": "sha256-mdTQw2XlariysyScCv2tTE45QSU9v/ezLcHJ22f0Nxc=", "narHash": "sha256-4cPymbty65RvF1DWQfc+Bc8B233A1BWxJnNULJKQ1EY=",
"rev": "58a1abdbae3217ca6b702f03d3b35125d88a2994", "rev": "63c3a29ca82437c87573e4c6919b09a24ea61b0f",
"revCount": 617818, "revCount": 619660,
"type": "tarball", "type": "tarball",
"url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.617818%2Brev-58a1abdbae3217ca6b702f03d3b35125d88a2994/018f25c6-e917-75c9-967b-ebda3b3dc4ae/source.tar.gz" "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.619660%2Brev-63c3a29ca82437c87573e4c6919b09a24ea61b0f/018f3b26-5e03-7aa3-b783-09324dde70c2/source.tar.gz"
}, },
"original": { "original": {
"type": "tarball", "type": "tarball",

View file

@ -10,7 +10,6 @@
}; };
outputs = { outputs = {
self,
nixpkgs, nixpkgs,
devenv, devenv,
systems, systems,
@ -33,6 +32,7 @@
pre-commit.hooks = { pre-commit.hooks = {
alejandra.enable = true; alejandra.enable = true;
black.enable = true; black.enable = true;
deadnix.enable = true;
stylua.enable = true; stylua.enable = true;
shellcheck.enable = true; shellcheck.enable = true;
shfmt.enable = true; shfmt.enable = true;

View file

@ -1,163 +1,115 @@
{pkgs, ...}: let {pkgs, ...}: let
inherit (pkgs.stdenv.hostPlatform) isDarwin; inherit (pkgs.stdenv.hostPlatform) isDarwin;
in { in {
# Home Manager needs a bit of information about you and the paths it should home = {
# manage. username = "acicchetti";
home.username = "acicchetti";
home.homeDirectory = homeDirectory =
if isDarwin if isDarwin
then "/Users/acicchetti" then "/Users/acicchetti"
else "/home/acicchetti"; else "/home/acicchetti";
# This value determines the Home Manager release that your configuration is stateVersion = "23.11";
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.
#
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "23.05"; # Please read the comment before changing.
# The home.packages option allows you to install Nix packages into your sessionVariables = {
# environment. EDITOR = "nvim";
home.packages = [ };
# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
# # fonts?
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
# # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your
# # environment:
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = {
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
# # symlink to the Nix store copy.
# ".screenrc".source = dotfiles/screenrc;
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
}; };
# You can also manage environment variables but you will have to manually programs = {
# source home-manager.enable = true;
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/acicchetti/etc/profile.d/hm-session-vars.sh
#
# if you don't want to manage your shell through Home Manager.
home.sessionVariables = {
EDITOR = "nvim";
};
# Let Home Manager install and manage itself. aria2 = {
programs.home-manager.enable = true; enable = true;
};
programs.aria2 = { atuin = {
enable = true; enable = true;
}; enableZshIntegration = true;
settings = {
programs.atuin = { enter_accept = true;
enable = true; style = "compact";
enableZshIntegration = true; keymap_mode = "vim-insert";
settings = { keymap_cursor = {
enter_accept = true; vim_insert = "steady-bar";
style = "compact"; vim_normal = "steady-block";
keymap_mode = "vim-insert"; };
keymap_cursor = {
vim_insert = "steady-bar";
vim_normal = "steady-block";
}; };
}; };
};
programs.direnv = { direnv = {
enable = true; enable = true;
nix-direnv.enable = true; nix-direnv.enable = true;
enableZshIntegration = true; enableZshIntegration = true;
};
programs.eza = {
enable = true;
git = true;
icons = false;
enableZshIntegration = true;
};
programs.gh = {
enable = true;
settings = {
editor = "nvim";
git_protocol = "ssh";
}; };
};
programs.htop = { eza = {
enable = true; enable = true;
}; git = true;
icons = false;
enableZshIntegration = true;
};
programs.nix-index = { gh = {
enable = true; enable = true;
}; settings = {
programs.nix-index-database = { editor = "nvim";
comma.enable = true; git_protocol = "ssh";
};
programs.nnn = {
enable = true;
};
programs.skim = {
enable = true;
enableZshIntegration = false;
};
programs.tealdeer = {
enable = true;
};
programs.topgrade = {
enable = true;
settings = {
misc = {
disable = ["node" "nix" "home_manager" "gem" "ruby_gems" "cargo" "vim" "pipx" "pip3" "containers"];
run_in_tmux = true;
display_time = true;
skip_notify = true;
}; };
git.max_concurrency = 5;
linux.arch_package_manager = "paru";
}; };
};
programs.wezterm = { htop = {
enable = true; enable = true;
enableZshIntegration = true; };
extraConfig = builtins.readFile ../../wezterm/wezterm.lua;
};
programs.yazi = { nix-index = {
enable = true; enable = true;
enableZshIntegration = true; };
}; nix-index-database = {
comma.enable = true;
};
programs.zoxide = { nnn = {
enable = true; enable = true;
};
skim = {
enable = true;
enableZshIntegration = false;
};
tealdeer = {
enable = true;
};
topgrade = {
enable = true;
settings = {
misc = {
disable = ["node" "nix" "home_manager" "gem" "ruby_gems" "cargo" "vim" "pipx" "pip3" "containers"];
run_in_tmux = true;
display_time = true;
skip_notify = true;
};
git.max_concurrency = 5;
linux.arch_package_manager = "paru";
};
};
wezterm = {
enable = true;
enableZshIntegration = true;
extraConfig = builtins.readFile ../../wezterm/wezterm.lua;
};
yazi = {
enable = true;
enableZshIntegration = true;
};
zoxide = {
enable = true;
};
}; };
imports = [ imports = [

View file

@ -1,5 +1,7 @@
{...}: { {...}: {
home.file.".doom.d/init.el".source = ../../../../emacs/emacs.doom/init.el; home.file = {
home.file.".doom.d/config.el".source = ../../../../emacs/emacs.doom/config.el; ".doom.d/init.el".source = ../../../../emacs/emacs.doom/init.el;
home.file.".doom.d/packages.el".source = ../../../../emacs/emacs.doom/packages.el; ".doom.d/config.el".source = ../../../../emacs/emacs.doom/config.el;
".doom.d/packages.el".source = ../../../../emacs/emacs.doom/packages.el;
};
} }

1
statix.toml Normal file
View file

@ -0,0 +1 @@
disabled = ["empty_pattern"]