1
0
forked from poslop/rice-flakes

moved to core and removed duplicate ssh

This commit is contained in:
2025-11-07 13:52:07 -06:00
parent 63dd5e9c09
commit e96b840146
7 changed files with 2 additions and 8 deletions

View File

@@ -1,5 +1,7 @@
{
imports = [
./zsh
./git.nix
./fonts.nix
./hjem.nix
./network.nix

17
modules/core/git.nix Normal file
View File

@@ -0,0 +1,17 @@
{
...
}:
{
hj.rum.programs.git = {
enable = true;
settings = {
user = {
name = "poslop";
email = "poslop@archfox.org";
};
core = {
editor = "nvim -f";
};
};
};
}

12
modules/core/zsh/.zshrc Normal file
View File

@@ -0,0 +1,12 @@
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=10000
setopt autocd extendedglob nomatch notify
unsetopt beep
bindkey -v
zstyle :compinstall filename '/home/poslop/.zshrc'
autoload -Uz compinit
compinit

View File

@@ -0,0 +1 @@
{ imports = [ ./zsh.nix ]; }

11
modules/core/zsh/zsh.nix Normal file
View File

@@ -0,0 +1,11 @@
{
# hj.rum.programs.zsh = {
# enable = true;
# };
hj = {
files = {
".zshrc".source = ./.zshrc;
};
};
}