mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-09 23:49:43 +00:00
add browsers
This commit is contained in:
parent
a49ccce18d
commit
02f13b5f1f
4 changed files with 11 additions and 7 deletions
|
@ -48,12 +48,8 @@
|
|||
# (pkgs.writeShellScriptBin "my-hello" ''
|
||||
# echo "Hello, ${config.home.username}!"
|
||||
# '')
|
||||
chromium
|
||||
plasma5Packages.qtstyleplugin-kvantum
|
||||
kdeconnect
|
||||
microsoft-edge
|
||||
vivaldi
|
||||
vivaldi-ffmpeg-codecs
|
||||
x264
|
||||
joypixels
|
||||
rustc
|
||||
|
@ -63,7 +59,6 @@
|
|||
mpv
|
||||
obsidian
|
||||
dino
|
||||
kitty-themes
|
||||
tdesktop
|
||||
libreoffice-fresh
|
||||
jetbrains-mono
|
||||
|
@ -73,10 +68,8 @@
|
|||
libsForQt5.kwalletmanager
|
||||
libsForQt5.ksshaskpass
|
||||
zathura
|
||||
starship
|
||||
gnome.gnome-tweaks
|
||||
gnome-extension-manager
|
||||
ripgrep
|
||||
];
|
||||
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
|
|
8
modules/home-manager/browsers/default.nix
Normal file
8
modules/home-manager/browsers/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
chromium
|
||||
microsoft-edge
|
||||
vivaldi
|
||||
vivaldi-ffmpeg-codecs
|
||||
];
|
||||
}
|
|
@ -2,6 +2,7 @@
|
|||
imports = [
|
||||
./bash
|
||||
./bat
|
||||
./browsers
|
||||
./kitty
|
||||
./neovim
|
||||
./session-vars
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
options = {
|
||||
|
@ -57,5 +58,6 @@
|
|||
confirm_os_window_close 0
|
||||
";
|
||||
};
|
||||
home.packages = with pkgs; [kitty-themes];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue