Compare commits
No commits in common. "84191dac3eb3ff2c0c189d33a9c13b3db8378f25" and "60f72db49cc6256b022291551fbf78594e9cbb82" have entirely different histories.
84191dac3e
...
60f72db49c
|
@ -12,17 +12,15 @@
|
|||
inputs.nix-colors.homeManagerModules.default
|
||||
inputs.ags.homeManagerModules.default
|
||||
];
|
||||
|
||||
|
||||
|
||||
home.username = "joy";
|
||||
home.homeDirectory = "/home/joy";
|
||||
home.stateVersion = "23.11";
|
||||
programs.home-manager.enable = true;
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
EDITOR = "vim";
|
||||
};
|
||||
|
||||
|
||||
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;
|
||||
|
||||
}
|
||||
|
|
7
home/hyprland/cmus.sh
Executable file
7
home/hyprland/cmus.sh
Executable 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."
|
||||
|
|
@ -22,11 +22,6 @@ programs.gnupg.agent = {
|
|||
pinentryPackage = pkgs.pinentry-curses;
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
};
|
||||
|
||||
programs.hyprland.enable = true;
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
|
|
|
@ -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
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
@ -11,6 +11,8 @@
|
|||
lutris
|
||||
mangohud
|
||||
#hackerman
|
||||
neovim
|
||||
vim
|
||||
fastfetch
|
||||
freshfetch
|
||||
cmatrix
|
||||
|
@ -41,8 +43,6 @@
|
|||
gnome-calculator
|
||||
gnome-disk-utility
|
||||
#random utils
|
||||
gnat14
|
||||
libgccjit
|
||||
tree
|
||||
rofi-wayland
|
||||
screen
|
||||
|
@ -56,8 +56,5 @@
|
|||
yt-dlp
|
||||
boxbuddy
|
||||
distrobox
|
||||
neovim
|
||||
python3
|
||||
cl
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue