mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2025-02-20 15:10:00 +00:00
formatter
This commit is contained in:
parent
95d55ce775
commit
0db029b748
1 changed files with 136 additions and 89 deletions
67
home.nix
67
home.nix
|
@ -1,6 +1,9 @@
|
||||||
{ config, pkgs, inputs, ... }:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
# Home Manager needs a bit of information about you and the
|
# Home Manager needs a bit of information about you and the
|
||||||
# paths it should manage.
|
# paths it should manage.
|
||||||
home.username = "user";
|
home.username = "user";
|
||||||
|
@ -58,14 +61,58 @@
|
||||||
# (pkgs.writeShellScriptBin "my-hello" ''
|
# (pkgs.writeShellScriptBin "my-hello" ''
|
||||||
# echo "Hello, ${config.home.username}!"
|
# echo "Hello, ${config.home.username}!"
|
||||||
# '')
|
# '')
|
||||||
xsel wget neofetch htop oh-my-zsh git chromium plasma5Packages.qtstyleplugin-kvantum kdeconnect
|
xsel
|
||||||
microsoft-edge vivaldi vivaldi-ffmpeg-codecs x264 joypixels rustc cargo unzip ocs-url
|
wget
|
||||||
nextcloud-client duf foliate mpv obsidian dino aria2 bitwarden kitty-themes p7zip
|
neofetch
|
||||||
tdesktop libreoffice-fresh jetbrains-mono yakuake krita filelight inkscape yt-dlp ranger
|
htop
|
||||||
libsForQt5.kwallet libsForQt5.kwallet-pam libsForQt5.kwalletmanager libsForQt5.ksshaskpass
|
oh-my-zsh
|
||||||
cachix direnv git-lfs nix-direnv zathura starship gnome.gnome-tweaks gnome-extension-manager
|
git
|
||||||
|
chromium
|
||||||
|
plasma5Packages.qtstyleplugin-kvantum
|
||||||
|
kdeconnect
|
||||||
|
microsoft-edge
|
||||||
|
vivaldi
|
||||||
|
vivaldi-ffmpeg-codecs
|
||||||
|
x264
|
||||||
|
joypixels
|
||||||
|
rustc
|
||||||
|
cargo
|
||||||
|
unzip
|
||||||
|
ocs-url
|
||||||
|
nextcloud-client
|
||||||
|
duf
|
||||||
|
foliate
|
||||||
|
mpv
|
||||||
|
obsidian
|
||||||
|
dino
|
||||||
|
aria2
|
||||||
|
bitwarden
|
||||||
|
kitty-themes
|
||||||
|
p7zip
|
||||||
|
tdesktop
|
||||||
|
libreoffice-fresh
|
||||||
|
jetbrains-mono
|
||||||
|
yakuake
|
||||||
|
krita
|
||||||
|
filelight
|
||||||
|
inkscape
|
||||||
|
yt-dlp
|
||||||
|
ranger
|
||||||
|
libsForQt5.kwallet
|
||||||
|
libsForQt5.kwallet-pam
|
||||||
|
libsForQt5.kwalletmanager
|
||||||
|
libsForQt5.ksshaskpass
|
||||||
|
cachix
|
||||||
|
direnv
|
||||||
|
git-lfs
|
||||||
|
nix-direnv
|
||||||
|
zathura
|
||||||
|
starship
|
||||||
|
gnome.gnome-tweaks
|
||||||
|
gnome-extension-manager
|
||||||
ripgrep
|
ripgrep
|
||||||
inputs.nv.packages.x86_64-linux.default
|
inputs.nv.packages.x86_64-linux.default
|
||||||
|
inputs.nyaa.packages.x86_64-linux.default
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.config.permittedInsecurePackages = [
|
nixpkgs.config.permittedInsecurePackages = [
|
||||||
|
@ -219,7 +266,7 @@
|
||||||
|
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extensions = (with pkgs.vscode-extensions;[
|
extensions = with pkgs.vscode-extensions; [
|
||||||
arrterian.nix-env-selector
|
arrterian.nix-env-selector
|
||||||
mkhl.direnv
|
mkhl.direnv
|
||||||
jnoortheen.nix-ide
|
jnoortheen.nix-ide
|
||||||
|
@ -233,7 +280,7 @@
|
||||||
rust-lang.rust-analyzer
|
rust-lang.rust-analyzer
|
||||||
|
|
||||||
waderyan.gitblame
|
waderyan.gitblame
|
||||||
]);
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.bat = {
|
programs.bat = {
|
||||||
|
|
Loading…
Reference in a new issue