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,78 +1,29 @@
{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.
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
# source
#
# ~/.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"; EDITOR = "nvim";
}; };
};
# Let Home Manager install and manage itself. programs = {
programs.home-manager.enable = true; home-manager.enable = true;
programs.aria2 = { aria2 = {
enable = true; enable = true;
}; };
programs.atuin = { atuin = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
settings = { settings = {
@ -86,20 +37,20 @@ in {
}; };
}; };
programs.direnv = { direnv = {
enable = true; enable = true;
nix-direnv.enable = true; nix-direnv.enable = true;
enableZshIntegration = true; enableZshIntegration = true;
}; };
programs.eza = { eza = {
enable = true; enable = true;
git = true; git = true;
icons = false; icons = false;
enableZshIntegration = true; enableZshIntegration = true;
}; };
programs.gh = { gh = {
enable = true; enable = true;
settings = { settings = {
editor = "nvim"; editor = "nvim";
@ -107,31 +58,31 @@ in {
}; };
}; };
programs.htop = { htop = {
enable = true; enable = true;
}; };
programs.nix-index = { nix-index = {
enable = true; enable = true;
}; };
programs.nix-index-database = { nix-index-database = {
comma.enable = true; comma.enable = true;
}; };
programs.nnn = { nnn = {
enable = true; enable = true;
}; };
programs.skim = { skim = {
enable = true; enable = true;
enableZshIntegration = false; enableZshIntegration = false;
}; };
programs.tealdeer = { tealdeer = {
enable = true; enable = true;
}; };
programs.topgrade = { topgrade = {
enable = true; enable = true;
settings = { settings = {
misc = { misc = {
@ -145,20 +96,21 @@ in {
}; };
}; };
programs.wezterm = { wezterm = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
extraConfig = builtins.readFile ../../wezterm/wezterm.lua; extraConfig = builtins.readFile ../../wezterm/wezterm.lua;
}; };
programs.yazi = { yazi = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
}; };
programs.zoxide = { zoxide = {
enable = true; enable = true;
}; };
};
imports = [ imports = [
./modules/packages ./modules/packages

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"]