Compare commits

..

No commits in common. "84191dac3eb3ff2c0c189d33a9c13b3db8378f25" and "60f72db49cc6256b022291551fbf78594e9cbb82" have entirely different histories.

5 changed files with 11 additions and 36 deletions

View file

@ -12,17 +12,15 @@
inputs.nix-colors.homeManagerModules.default inputs.nix-colors.homeManagerModules.default
inputs.ags.homeManagerModules.default inputs.ags.homeManagerModules.default
]; ];
home.username = "joy"; home.username = "joy";
home.homeDirectory = "/home/joy"; home.homeDirectory = "/home/joy";
home.stateVersion = "23.11"; home.stateVersion = "23.11";
programs.home-manager.enable = true; programs.home-manager.enable = true;
home.sessionVariables = { home.sessionVariables = {
EDITOR = "nvim"; EDITOR = "vim";
}; };
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium; colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;
} }

7
home/hyprland/cmus.sh Executable file
View file

@ -0,0 +1,7 @@
#!/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."

View file

@ -22,11 +22,6 @@ programs.gnupg.agent = {
pinentryPackage = pkgs.pinentry-curses; pinentryPackage = pkgs.pinentry-curses;
enableSSHSupport = true; enableSSHSupport = true;
}; };
programs.neovim = {
enable = true;
defaultEditor = true;
};
programs.hyprland.enable = true; programs.hyprland.enable = true;
users.defaultUserShell = pkgs.zsh; users.defaultUserShell = pkgs.zsh;

View file

@ -1,22 +0,0 @@
{ 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
'';
};
}

View file

@ -11,6 +11,8 @@
lutris lutris
mangohud mangohud
#hackerman #hackerman
neovim
vim
fastfetch fastfetch
freshfetch freshfetch
cmatrix cmatrix
@ -41,8 +43,6 @@
gnome-calculator gnome-calculator
gnome-disk-utility gnome-disk-utility
#random utils #random utils
gnat14
libgccjit
tree tree
rofi-wayland rofi-wayland
screen screen
@ -56,8 +56,5 @@
yt-dlp yt-dlp
boxbuddy boxbuddy
distrobox distrobox
neovim
python3
cl
]; ];
} }