mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 12:51:34 +01:00
Install fastfetch, dust and brave as lazy-apps
This commit is contained in:
parent
b1367587ca
commit
93390cb370
3 changed files with 132 additions and 7 deletions
|
|
@ -1,4 +1,24 @@
|
|||
{ pkgs, pkgs-unstable, ... }:
|
||||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
pkgs-unstable,
|
||||
...
|
||||
}:
|
||||
let
|
||||
lazyApp = pkg: inputs.lazy-apps.packages.${pkgs.system}.lazy-app.override { inherit pkg; };
|
||||
lazyDesktopApp =
|
||||
pkg:
|
||||
inputs.lazy-apps.packages.${pkgs.system}.lazy-app.override {
|
||||
inherit pkg;
|
||||
desktopItem = pkgs.makeDesktopItem {
|
||||
name = pkg.meta.mainProgram;
|
||||
exec = "${pkg.meta.mainProgram} %U";
|
||||
icon = pkg.meta.mainProgram;
|
||||
desktopName = pkg.meta.mainProgram;
|
||||
comment = pkg.meta.description;
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
imports = [ ../shared-home.nix ];
|
||||
|
||||
|
|
@ -16,22 +36,22 @@
|
|||
|
||||
home.packages = [
|
||||
pkgs.bottom
|
||||
pkgs.fastfetch
|
||||
(lazyApp pkgs.fastfetch)
|
||||
(lazyApp pkgs.dust)
|
||||
|
||||
pkgs.nemo-with-extensions
|
||||
pkgs.celluloid
|
||||
pkgs-unstable.spotify
|
||||
pkgs.obsidian
|
||||
pkgs-unstable.anki
|
||||
pkgs-unstable.discord
|
||||
(lazyDesktopApp pkgs.brave)
|
||||
|
||||
pkgs.jetbrains.idea-community
|
||||
pkgs.jetbrains.goland
|
||||
pkgs.qtcreator
|
||||
pkgs-unstable.logisim-evolution
|
||||
|
||||
pkgs.obsidian
|
||||
pkgs-unstable.anki
|
||||
|
||||
pkgs-unstable.discord
|
||||
|
||||
pkgs.libreoffice
|
||||
pkgs.hunspell
|
||||
pkgs.hunspellDicts.de_DE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue