[desktop] Adds inkscape and groups some similar apps
This commit is contained in:
11
home-manager/features/chat.nix
Normal file
11
home-manager/features/chat.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
../apps/element.nix
|
||||
../apps/discord.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
signal-desktop
|
||||
];
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
|
||||
nixfmt-rfc-style # Formatter
|
||||
nil # Language Server
|
||||
statix # Lints and suggestions for Nix
|
||||
];
|
||||
|
||||
home.shellAliases = {
|
||||
@@ -14,4 +15,3 @@
|
||||
rebuild-boot = "sudo nixos-rebuild boot --flake ~/system-config --show-trace --print-build-logs --verbose";
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
7
home-manager/features/image-editing.nix
Normal file
7
home-manager/features/image-editing.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
gimp3
|
||||
inkscape
|
||||
];
|
||||
}
|
||||
@@ -13,7 +13,6 @@
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
# Desktop Applications
|
||||
signal-desktop
|
||||
gimp3
|
||||
|
||||
# Common utilities
|
||||
|
||||
Reference in New Issue
Block a user