mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-12 16:39:44 +00:00
formatter
This commit is contained in:
parent
95d55ce775
commit
0db029b748
1 changed files with 136 additions and 89 deletions
69
home.nix
69
home.nix
|
@ -1,6 +1,9 @@
|
|||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
# Home Manager needs a bit of information about you and the
|
||||
# paths it should manage.
|
||||
home.username = "user";
|
||||
|
@ -29,7 +32,7 @@
|
|||
home.sessionVariables = {
|
||||
# default editor
|
||||
EDITOR = "nvim";
|
||||
NIXPKGS_ALLOW_UNFREE=1;
|
||||
NIXPKGS_ALLOW_UNFREE = 1;
|
||||
|
||||
# sshaskpass
|
||||
SSH_ASKPASS = "/home/user/.nix-profile/bin/ksshaskpass";
|
||||
|
@ -58,14 +61,58 @@
|
|||
# (pkgs.writeShellScriptBin "my-hello" ''
|
||||
# echo "Hello, ${config.home.username}!"
|
||||
# '')
|
||||
xsel wget neofetch htop oh-my-zsh 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
|
||||
xsel
|
||||
wget
|
||||
neofetch
|
||||
htop
|
||||
oh-my-zsh
|
||||
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
|
||||
inputs.nv.packages.x86_64-linux.default
|
||||
inputs.nyaa.packages.x86_64-linux.default
|
||||
];
|
||||
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
|
@ -219,7 +266,7 @@
|
|||
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
extensions = (with pkgs.vscode-extensions;[
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
arrterian.nix-env-selector
|
||||
mkhl.direnv
|
||||
jnoortheen.nix-ide
|
||||
|
@ -233,7 +280,7 @@
|
|||
rust-lang.rust-analyzer
|
||||
|
||||
waderyan.gitblame
|
||||
]);
|
||||
];
|
||||
};
|
||||
|
||||
programs.bat = {
|
||||
|
|
Loading…
Reference in a new issue