modules/desktop: simplify
This commit is contained in:
parent
315955da01
commit
a76f22d4a1
1 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,6 @@
|
||||||
{ pkgs, config, inputs, lib, ... }: let
|
{ pkgs, config, inputs, lib, ... }: let
|
||||||
|
custom = inputs.self.packages.${pkgs.system};
|
||||||
|
|
||||||
sets = with pkgs; rec {
|
sets = with pkgs; rec {
|
||||||
writing = [
|
writing = [
|
||||||
apostrophe
|
apostrophe
|
||||||
|
@ -25,9 +27,9 @@
|
||||||
xh
|
xh
|
||||||
];
|
];
|
||||||
www = [
|
www = [
|
||||||
inputs.self.packages.x86_64-linux.ungoogled-chromium
|
custom.ungoogled-chromium
|
||||||
];
|
];
|
||||||
gui-apps = with inputs.self.packages.x86_64-linux; [
|
gui-apps = with custom; [
|
||||||
amberol
|
amberol
|
||||||
obfuscate
|
obfuscate
|
||||||
fragments-remote
|
fragments-remote
|
||||||
|
@ -53,7 +55,7 @@
|
||||||
dev-tools = [
|
dev-tools = [
|
||||||
bustle
|
bustle
|
||||||
gnome-builder
|
gnome-builder
|
||||||
inputs.self.packages.x86_64-linux.git-remote-ipld
|
custom.git-remote-ipld
|
||||||
];
|
];
|
||||||
system = with pkgs.gnomeExtensions; [
|
system = with pkgs.gnomeExtensions; [
|
||||||
appindicator
|
appindicator
|
||||||
|
|
Loading…
Reference in a new issue