mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 06:31:20 +00:00
23 lines
470 B
Nix
23 lines
470 B
Nix
{ pkgs, inputs, config, ... }:
|
|
|
|
let
|
|
customWallpaper = "/nix/store/fvplr8bbp5b9n2x6s21bp4nai80adk8j-wallhaven-zyerpj.jpg";
|
|
in
|
|
{
|
|
environment.systemPackages = with pkgs; with inputs; [
|
|
inputs.zen-browser.packages."${system}".default
|
|
firefox
|
|
git
|
|
vim
|
|
wget
|
|
curl
|
|
fzf
|
|
jq
|
|
ripgrep
|
|
networkmanager-openvpn
|
|
(pkgs.writeTextDir "share/sddm/themes/breeze/theme.conf.user" ''
|
|
[General]
|
|
background=${customWallpaper}
|
|
'')
|
|
];
|
|
}
|