More updates to darwin config; brew integration, other

This commit is contained in:
Random936
2024-05-20 22:29:10 -07:00
parent c68a81c262
commit 7a95955ccb
7 changed files with 42 additions and 24 deletions

View File

@@ -3,26 +3,9 @@
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
feh
clang
cargo
neofetch
#microsoft-edge
#nextcloud-client
#bitwarden-cli
#bitwarden
#discord
# Emacs
cmake
isync
ispell
mu
# fonts
fira-code
fira-code-symbols
meslo-lgs-nf
];
programs = {

View File

@@ -7,10 +7,9 @@
imports = [
./common.nix
./emacs.nix
./zsh.nix
];
programs.emacs.package = pkgs.emacs-macport;
home.stateVersion = "23.11";
}

View File

@@ -1,4 +1,15 @@
{ inputs, config, pkgs, ... }: {
home.packages = with pkgs; [
cmake
isync
ispell
ledger
mu
fira-code
fira-code-symbols
];
programs.emacs = {
enable = true;
extraPackages = epkgs: with epkgs; [

View File

@@ -11,6 +11,10 @@
./zsh.nix
];
home.packages = with pkgs; [
feh
];
gtk = {
enable = true;
theme = {
@@ -19,10 +23,6 @@
};
};
programs = {
command-not-found.enable = true;
};
home.file = {
".Xresources".source = ../dotfiles/.Xresources;
".scripts/brightness.sh".source = ../dotfiles/.scripts/brightness.sh;

View File

@@ -1,4 +1,9 @@
{ inputs, config, pkgs, ... }: {
home.packages = with pkgs; [
meslo-lgs-nf
];
programs.zsh = {
enable = true;
enableCompletion = true;