chore: reorganise nix files into base dir
This commit is contained in:
parent
0fdd56c432
commit
104a0ccd4a
13 changed files with 2 additions and 2 deletions
23
modules/applications.nix
Normal file
23
modules/applications.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
gimp
|
||||
audacity
|
||||
obsidian
|
||||
element-desktop
|
||||
thunderbird
|
||||
];
|
||||
|
||||
programs.kdeconnect.enable = true;
|
||||
systemd.user.services.kdeconnectd = {
|
||||
enable = true;
|
||||
after = [ "network.target" ];
|
||||
wantedBy = [ "default.target" ];
|
||||
description = "kdeconnectd";
|
||||
serviceConfig = {
|
||||
Type = "simple";
|
||||
ExecStart = "${pkgs.kdePackages.kdeconnect-kde}/libexec/kdeconnectd";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue