nix: add module for desktop applications
This commit is contained in:
parent
3db0b87a09
commit
16ec3f6ec4
1 changed files with 23 additions and 0 deletions
23
nix/modules/applications.nix
Normal file
23
nix/modules/applications.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
{ config, lib, pkgs }:
|
||||||
|
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
gimp
|
||||||
|
audacity
|
||||||
|
obsidian
|
||||||
|
cinny-desktop
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.firefox.enable = true;
|
||||||
|
|
||||||
|
programs.kdeconnect.enable = true;
|
||||||
|
systemd.user.services.kdeconnectd = {
|
||||||
|
enable = true;
|
||||||
|
after = [ "default.target" ];
|
||||||
|
description = "kdeconnectd";
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
ExecStart = "${pkgs.kdeconnectd}/bin/kdeconnectd";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue