This commit is contained in:
Aditya 2023-05-10 23:14:05 +05:30
parent 10a0d19c9a
commit fc0a9e391e

View file

@ -19,10 +19,11 @@
# Allow non-free packages # Allow non-free packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nixpkgs.config.joypixels.acceptLicense = true;
# The home.packages option allows you to install Nix packages into your # The home.packages option allows you to install Nix packages into your
# environment. # environment.
home.packages = [ home.packages = with pkgs; [
# # Adds the 'hello' command to your environment. It prints a friendly # # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run. # # "Hello, world!" when run.
# pkgs.hello # pkgs.hello
@ -39,10 +40,9 @@
# (pkgs.writeShellScriptBin "my-hello" '' # (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!" # echo "Hello, ${config.home.username}!"
# '') # '')
pkgs.xsel pkgs.wget pkgs.neofetch pkgs.htop pkgs.oh-my-zsh xsel wget neofetch htop oh-my-zsh git chromium kitty plasma5Packages.qtstyleplugin-kvantum kdeconnect
pkgs.git pkgs.chromium pkgs.kitty pkgs.plasma5Packages.qtstyleplugin-kvantum pkgs.kdeconnect bat gnome.gnome-tweaks microsoft-edge vivaldi vivaldi-ffmpeg-codecs x264 nerdfonts gnome.gnome-terminal
pkgs.bat pkgs.gnome.gnome-tweaks pkgs.microsoft-edge pkgs.vivaldi pkgs.vivaldi-ffmpeg-codecs joypixels rustc cargo
pkgs.x264
]; ];
programs.bash = { programs.bash = {
@ -64,6 +64,11 @@
}; };
}; };
programs.neovim = {
enable = true;
defaultEditor = true;
};
# Home Manager is pretty good at managing dotfiles. The primary way to manage # Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'. # plain files is through 'home.file'.
home.file = { home.file = {
@ -89,7 +94,4 @@
# /etc/profiles/per-user/user/etc/profile.d/hm-session-vars.sh # /etc/profiles/per-user/user/etc/profile.d/hm-session-vars.sh
# #
# if you don't want to manage your shell through Home Manager. # if you don't want to manage your shell through Home Manager.
home.sessionVariables = {
EDITOR = "vim";
};
} }