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
|
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 = "vim";
|
EDITOR = "nvim";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
colorScheme = inputs.nix-colors.colorSchemes.gruvbox-dark-medium;
|
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;
|
enableSSHSupport = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.neovim = {
|
||||||
|
enable = true;
|
||||||
|
defaultEditor = true;
|
||||||
|
};
|
||||||
|
|
||||||
programs.hyprland.enable = true;
|
programs.hyprland.enable = true;
|
||||||
users.defaultUserShell = pkgs.zsh;
|
users.defaultUserShell = pkgs.zsh;
|
||||||
programs.zsh.enable = true;
|
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
|
lutris
|
||||||
mangohud
|
mangohud
|
||||||
#hackerman
|
#hackerman
|
||||||
neovim
|
|
||||||
vim
|
|
||||||
fastfetch
|
fastfetch
|
||||||
freshfetch
|
freshfetch
|
||||||
cmatrix
|
cmatrix
|
||||||
|
@ -43,6 +41,8 @@
|
||||||
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,5 +56,8 @@
|
||||||
yt-dlp
|
yt-dlp
|
||||||
boxbuddy
|
boxbuddy
|
||||||
distrobox
|
distrobox
|
||||||
|
neovim
|
||||||
|
python3
|
||||||
|
cl
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue