Got declarative homebrew working, working on yabai and shkd still
This commit is contained in:
parent
ebb5f51a86
commit
d96d437ed4
5 changed files with 114 additions and 31 deletions
73
home.nix
73
home.nix
|
|
@ -1,40 +1,57 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.stateVersion = "25.05"; # Please read the comment before changing.
|
||||
home.stateVersion = "25.05";
|
||||
|
||||
home.packages = with pkgs; [
|
||||
irssi
|
||||
];
|
||||
|
||||
# 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
|
||||
# '';
|
||||
services.mpd = {
|
||||
enable = true;
|
||||
musicDirectory = "/Users/erogers/Music";
|
||||
extraConfig = ''
|
||||
audio_output {
|
||||
type "osx"
|
||||
name "Mac Output"
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
wget # Tool for retrieving files using HTTP/S and FTP
|
||||
imagemagick # Image manipulation software suite
|
||||
gauche # R7RS Scheme scripting engine
|
||||
typst # Modern markup-based typesetting system
|
||||
rsync # Incremental file transfer utility
|
||||
tmux # Terminal multiplexer
|
||||
btop # Resource monitor
|
||||
irssi # Terminal based IRC client
|
||||
rmpc # TUI music player
|
||||
nicotine-plus # Graphical client for SoulSeek
|
||||
];
|
||||
|
||||
home.file = {
|
||||
".config/ghostty/config" .source = dotfiles/ghostty/config;
|
||||
".config/kanata/conf.kbd" .source = dotfiles/kanata/conf.kbd;
|
||||
".config/nvim/init.lua" .source = builtins.fetchurl {
|
||||
url = "https://git.luluslly.xyz/lulusilly/dotfiles/raw/branch/master/.config/nvim/init.lua";
|
||||
sha256 = "fc7104ae4957a7ff92375557725daf9872f836645556f7940fdd6366b04386e0";
|
||||
};
|
||||
};
|
||||
|
||||
# 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/davish/etc/profile.d/hm-session-vars.sh
|
||||
#
|
||||
# if you don't want to manage your shell through Home Manager.
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "lulusilly";
|
||||
userEmail = "lunita@puppygirl.onl";
|
||||
aliases = {
|
||||
ci = "commit -m";
|
||||
pu = "push origin main";
|
||||
pm = "push origin master";
|
||||
s = "status";
|
||||
co = "checkout";
|
||||
};
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue