Compare commits
2 commits
756ec28e7d
...
766982d161
Author | SHA1 | Date | |
---|---|---|---|
766982d161 | |||
1ff7ce75ec |
4 changed files with 20 additions and 10 deletions
|
@ -12,7 +12,8 @@
|
||||||
[ ];
|
[ ];
|
||||||
|
|
||||||
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
||||||
pkgs.elisa
|
elisa
|
||||||
|
kate
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.firewall.allowedTCPPortRanges = [
|
networking.firewall.allowedTCPPortRanges = [
|
||||||
|
|
|
@ -7,22 +7,14 @@
|
||||||
./games
|
./games
|
||||||
./ims.nix
|
./ims.nix
|
||||||
./audacious.nix
|
./audacious.nix
|
||||||
|
./pim.nix
|
||||||
"${nixos-config}/services/desktop"
|
"${nixos-config}/services/desktop"
|
||||||
];
|
];
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
kdePackages.kontact
|
|
||||||
kdePackages.kmail-account-wizard
|
|
||||||
kdePackages.kdepim-runtime
|
|
||||||
kdePackages.kdepim-addons
|
|
||||||
kdePackages.kalk
|
kdePackages.kalk
|
||||||
kdePackages.kalgebra
|
kdePackages.kalgebra
|
||||||
kdePackages.filelight
|
kdePackages.filelight
|
||||||
kdePackages.ffmpegthumbs
|
kdePackages.ffmpegthumbs
|
||||||
kdePackages.dolphin-plugins
|
kdePackages.dolphin-plugins
|
||||||
];
|
];
|
||||||
|
|
||||||
home.persistence.default.directories = [
|
|
||||||
".local/share/akonadi"
|
|
||||||
".local/share/kontact"
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
15
programs/desktop/pim.nix
Normal file
15
programs/desktop/pim.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
home.packages = with pkgs.kdePackages; [
|
||||||
|
kontact
|
||||||
|
kmail-account-wizard
|
||||||
|
kdepim-runtime
|
||||||
|
kdepim-addons
|
||||||
|
];
|
||||||
|
home.persistence.default.directories = [
|
||||||
|
".local/share/akonadi"
|
||||||
|
".local/share/kontact"
|
||||||
|
".local/share/akonadi_maildir_resource_0"
|
||||||
|
".local/share/akgregator"
|
||||||
|
];
|
||||||
|
}
|
|
@ -15,6 +15,8 @@
|
||||||
signageos.signageos-vscode-sops
|
signageos.signageos-vscode-sops
|
||||||
];
|
];
|
||||||
userSettings = {
|
userSettings = {
|
||||||
|
"editor.fontFamily" = "\"Fira Code\", \"Fira Code Nerd Font Mono\", monospace";
|
||||||
|
"editor.fontLigatures" = true;
|
||||||
"editor.formatOnPaste" = true;
|
"editor.formatOnPaste" = true;
|
||||||
"editor.formatOnSave" = true;
|
"editor.formatOnSave" = true;
|
||||||
"editor.formatOnType" = true;
|
"editor.formatOnType" = true;
|
||||||
|
|
Loading…
Reference in a new issue