Compare commits
6 commits
60f72db49c
...
84191dac3e
Author | SHA1 | Date | |
---|---|---|---|
joygnu | 84191dac3e | ||
joygnu | 88bdcca926 | ||
joygnu | 2bfd4389e8 | ||
joygnu | 8ee469efd6 | ||
joygnu | a639fd0738 | ||
joygnu | 71a3f65932 |
|
@ -13,14 +13,16 @@
|
|||
inputs.ags.homeManagerModules.default
|
||||
];
|
||||
|
||||
|
||||
home.username = "joy";
|
||||
home.homeDirectory = "/home/joy";
|
||||
home.stateVersion = "23.11";
|
||||
programs.home-manager.enable = true;
|
||||
home.sessionVariables = {
|
||||
EDITOR = "vim";
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
|
||||
|
||||
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;
|
||||
|
||||
}
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Start cmus in a screen session named 'cmus_session'
|
||||
screen -S cmus_session -dm cmus
|
||||
|
||||
echo "cmus started in screen session 'cmus_session'. Use 'screen -r cmus_session' to attach."
|
||||
|
|
@ -23,6 +23,11 @@ programs.gnupg.agent = {
|
|||
enableSSHSupport = true;
|
||||
};
|
||||
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
};
|
||||
|
||||
programs.hyprland.enable = true;
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
programs.zsh.enable = true;
|
||||
|
|
22
modules/nvchad/default.nix
Normal file
22
modules/nvchad/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, pkgs, fetchFromGithub, ... }:
|
||||
|
||||
{
|
||||
programs.neovim.enable = true;
|
||||
|
||||
xdg.configFile."nvim".source = pkgs.stdenv.mkDerivation {
|
||||
name = "NvChad";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "NvChad";
|
||||
repo = "NvChad";
|
||||
rev = "f17e83010f25784b58dea175c6480b3a8225a3e9";
|
||||
hash = "sha256-P5TRjg603/7kOVNFC8nXfyciNRLsIeFvKsoRCIwFP3I=";
|
||||
};
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
cp -r ./* $out/
|
||||
cd $out/
|
||||
cp -r ${./my_nvchad_config} $out/lua/custom
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
@ -11,8 +11,6 @@
|
|||
lutris
|
||||
mangohud
|
||||
#hackerman
|
||||
neovim
|
||||
vim
|
||||
fastfetch
|
||||
freshfetch
|
||||
cmatrix
|
||||
|
@ -43,6 +41,8 @@
|
|||
gnome-calculator
|
||||
gnome-disk-utility
|
||||
#random utils
|
||||
gnat14
|
||||
libgccjit
|
||||
tree
|
||||
rofi-wayland
|
||||
screen
|
||||
|
@ -56,5 +56,8 @@
|
|||
yt-dlp
|
||||
boxbuddy
|
||||
distrobox
|
||||
neovim
|
||||
python3
|
||||
cl
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue