Other config; added new tpm package for tmux
This commit is contained in:
@@ -1,14 +1,17 @@
|
||||
{ inputs, config, pkgs, ... }: {
|
||||
{ inputs, config, pkgs, ... }:
|
||||
{
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
fonts.fontconfig.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
home.packages = (with pkgs; [
|
||||
tmux
|
||||
clang
|
||||
cargo
|
||||
gnumake
|
||||
neofetch
|
||||
spotify
|
||||
];
|
||||
bitwarden-cli
|
||||
]);
|
||||
|
||||
programs = {
|
||||
home-manager.enable = true;
|
||||
@@ -25,16 +28,6 @@
|
||||
|
||||
|
||||
home.file = {
|
||||
".mbsyncrc".source = ../dotfiles/.mbsyncrc;
|
||||
".functions.zsh".source = ../dotfiles/.functions.zsh;
|
||||
|
||||
# Emacs files
|
||||
".emacs".source = ../dotfiles/.emacs;
|
||||
".emacs.d/config.org".source = ../dotfiles/.emacs.d/config.org;
|
||||
".emacs.d/terminal.org".source = ../dotfiles/.emacs.d/terminal.org;
|
||||
".emacs.d/functions.org".source = ../dotfiles/.emacs.d/functions.org;
|
||||
".emacs.d/email.org".source = ../dotfiles/.emacs.d/email.org;
|
||||
".emacs.d/org.org".source = ../dotfiles/.emacs.d/org.org;
|
||||
".emacs.d/lsp.org".source = ../dotfiles/.emacs.d/lsp.org;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
{ inputs, config, pkgs, ... }: {
|
||||
{ inputs, lib, config, pkgs, ... }:
|
||||
let
|
||||
mypkgs = import ../packages/all-packages.nix {
|
||||
inherit pkgs lib config;
|
||||
};
|
||||
in
|
||||
{
|
||||
|
||||
home = {
|
||||
username = "jadenmaxwell";
|
||||
@@ -11,5 +17,6 @@
|
||||
./zsh.nix
|
||||
];
|
||||
|
||||
home.file.".tmux/plugins/tpm".source = "${mypkgs.tpm}";
|
||||
home.stateVersion = "23.11";
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
isync
|
||||
ispell
|
||||
ledger
|
||||
texliveFull
|
||||
mu
|
||||
|
||||
fira-code
|
||||
@@ -12,6 +13,7 @@
|
||||
|
||||
programs.emacs = {
|
||||
enable = true;
|
||||
package = pkgs.emacs29;
|
||||
extraPackages = epkgs: with epkgs; [
|
||||
mu4e
|
||||
vterm
|
||||
@@ -19,4 +21,15 @@
|
||||
nerd-icons
|
||||
];
|
||||
};
|
||||
|
||||
home.file = {
|
||||
".emacs".source = ../dotfiles/.emacs;
|
||||
".emacs.d/config.org".source = ../dotfiles/.emacs.d/config.org;
|
||||
".emacs.d/terminal.org".source = ../dotfiles/.emacs.d/terminal.org;
|
||||
".emacs.d/functions.org".source = ../dotfiles/.emacs.d/functions.org;
|
||||
".emacs.d/email.org".source = ../dotfiles/.emacs.d/email.org;
|
||||
".emacs.d/org.org".source = ../dotfiles/.emacs.d/org.org;
|
||||
".emacs.d/lsp.org".source = ../dotfiles/.emacs.d/lsp.org;
|
||||
".mbsyncrc".source = ../dotfiles/.mbsyncrc;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -13,6 +13,9 @@
|
||||
|
||||
home.packages = with pkgs; [
|
||||
feh
|
||||
microsoft-edge
|
||||
nextcloud-client
|
||||
bitwarden
|
||||
];
|
||||
|
||||
gtk = {
|
||||
|
||||
Reference in New Issue
Block a user