mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-24 17:08:48 +01:00
several tweaks to note taking apps
This commit is contained in:
parent
8cfb05c85f
commit
db9f2f2c36
5 changed files with 15 additions and 0 deletions
|
@ -20,6 +20,7 @@ with lib;
|
|||
./../programs/firefox.nix
|
||||
./../programs/chromium.nix
|
||||
./../programs/mpv.nix
|
||||
./../programs/syncthing.nix
|
||||
./../../nix.nix
|
||||
./packages.nix
|
||||
];
|
||||
|
|
|
@ -117,6 +117,8 @@ with lib;
|
|||
gnome.gnome-disk-utility
|
||||
inkscape
|
||||
musescore
|
||||
obsidian
|
||||
syncthingtray
|
||||
] else [ ]) ++ (if config.machine.isGnome then [
|
||||
gnomeExtensions.blur-my-shell
|
||||
gnomeExtensions.dash-to-panel
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
package = pkgs.gitFull;
|
||||
lfs.enable = true;
|
||||
userEmail = "thilo.billerbeck@officerent.de";
|
||||
userName = "Thilo Billerbeck";
|
||||
|
@ -26,4 +27,7 @@
|
|||
branch = { autosetuprebase = "always"; };
|
||||
};
|
||||
};
|
||||
programs.git-credential-oauth = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
|
|
7
home-manager/programs/syncthing.nix
Normal file
7
home-manager/programs/syncthing.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
services.syncthing = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
|
@ -24,6 +24,7 @@
|
|||
config = {
|
||||
permittedInsecurePackages = [
|
||||
"electron-24.8.6"
|
||||
"electron-25.9.0"
|
||||
];
|
||||
allowUnfree = true;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue