mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-06-28 12:19:09 +00:00
Use nixfmt
to format all .nix files
This commit is contained in:
parent
454d2b9341
commit
e993042ff6
48 changed files with 206 additions and 140 deletions
|
@ -1,4 +1,9 @@
|
|||
{ pkgs, inputs, config, ... }:
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
customWallpaper = pkgs.fetchurl {
|
||||
|
@ -7,26 +12,29 @@ let
|
|||
};
|
||||
in
|
||||
{
|
||||
environment.systemPackages = with pkgs; with inputs; [
|
||||
inputs.zen-browser.packages."${system}".default
|
||||
firefox
|
||||
git
|
||||
vim
|
||||
wget
|
||||
curl
|
||||
fzf
|
||||
jq
|
||||
unzip
|
||||
silver-searcher
|
||||
ripgrep
|
||||
wl-clipboard-rs
|
||||
networkmanager-openvpn
|
||||
(pkgs.writeTextDir "share/sddm/themes/breeze/theme.conf.user" ''
|
||||
[General]
|
||||
background=${customWallpaper}
|
||||
'')
|
||||
dig
|
||||
zig
|
||||
spotify
|
||||
];
|
||||
}
|
||||
environment.systemPackages =
|
||||
with pkgs;
|
||||
with inputs;
|
||||
[
|
||||
inputs.zen-browser.packages."${system}".default
|
||||
firefox
|
||||
git
|
||||
vim
|
||||
wget
|
||||
curl
|
||||
fzf
|
||||
jq
|
||||
unzip
|
||||
silver-searcher
|
||||
ripgrep
|
||||
wl-clipboard-rs
|
||||
networkmanager-openvpn
|
||||
(pkgs.writeTextDir "share/sddm/themes/breeze/theme.conf.user" ''
|
||||
[General]
|
||||
background=${customWallpaper}
|
||||
'')
|
||||
dig
|
||||
zig
|
||||
spotify
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue