add fw-new
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
|
||||
impermanence = builtins.fetchTarball "https://github.com/nix-community/impermanence/archive/master.tar.gz";
|
||||
# impermanence = builtins.fetchTarball "https://github.com/nix-community/impermanence/archive/master.tar.gz";
|
||||
|
||||
thunderbirdSettings = {
|
||||
"extensions.activeThemeID" = "thunderbird-compact-dark@mozilla.org";
|
||||
@@ -15,7 +15,7 @@ let
|
||||
"calendar.ui.version" = 3;
|
||||
"calendar.timezone.local" = "Europe/Vienna";
|
||||
"calendar.week.start" = 1;
|
||||
"layout.css.devPixelsPerPx" = "1.5";
|
||||
"layout.css.devPixelsPerPx" = "1";
|
||||
};
|
||||
|
||||
thunderbirdCalendarPersonal = {
|
||||
@@ -30,7 +30,7 @@ let
|
||||
"calendar.registry.cloonar-personal.refreshInterval" = 30;
|
||||
"calendar.registry.cloonar-personal.suppressAlarms" = false;
|
||||
"calendar.registry.cloonar-personal.type" = "caldav";
|
||||
"calendar.registry.cloonar-personal.uri" = "https://cloud.cloonar.com/remote.php/dav/calendars/dominik.polakovics@cloonar.com/personal/";
|
||||
"calendar.registry.cloonar-personal.uri" = "https://nextcloud.cloonar.com/remote.php/dav/calendars/dominik.polakovics@cloonar.com/personal/";
|
||||
"calendar.registry.cloonar-personal.username" = "dominik.polakovics@cloonar.com";
|
||||
};
|
||||
thunderbirdCalendarEpicenterEmployees = {
|
||||
@@ -50,7 +50,7 @@ let
|
||||
|
||||
thunderbirdContactsPersonal = {
|
||||
"ldap_2.servers.Contacts.carddav.token" = "";
|
||||
"ldap_2.servers.Contacts.carddav.url" = "https://cloud.cloonar.com/remote.php/dav/addressbooks/users/dominik.polakovics@cloonar.com/contacts/";
|
||||
"ldap_2.servers.Contacts.carddav.url" = "https://nextcloud.cloonar.com/remote.php/dav/addressbooks/users/dominik.polakovics@cloonar.com/contacts/";
|
||||
"ldap_2.servers.Contacts.carddav.username" = "dominik.polakovics@cloonar.com";
|
||||
"ldap_2.servers.Contacts.description" = "Contacts";
|
||||
"ldap_2.servers.Contacts.dirType" = 102;
|
||||
@@ -71,7 +71,10 @@ let
|
||||
"signon.rememberSignons" = false;
|
||||
"identity.sync.tokenserver.uri" = "https://sync.cloonar.com:5000/token/1.0/sync/1.5";
|
||||
# "toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
||||
"layout.css.devPixelsPerPx" = "1.5";
|
||||
"layout.css.devPixelsPerPx" = "1";
|
||||
"media.ffmpeg.vaapi.enabled" = true;
|
||||
"media.ffmpeg.vaapi-drm-display.enabled" = true;
|
||||
"gfx.webrender.all" = true;
|
||||
};
|
||||
|
||||
firefoxUserChrome = ''
|
||||
@@ -141,38 +144,40 @@ in
|
||||
programs.fuse.userAllowOther = true;
|
||||
|
||||
home-manager.users.dominik = { lib, pkgs, ... }: {
|
||||
imports = [ "${impermanence}/home-manager.nix" ];
|
||||
# imports = [ "${impermanence}/home-manager.nix" ];
|
||||
/* The home.stateVersion option does not have a default and must be set */
|
||||
home.stateVersion = "24.05";
|
||||
home.enableNixpkgsReleaseCheck = false;
|
||||
/* Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; */
|
||||
home.persistence."/nix/persist/user/dominik" = {
|
||||
allowOther = true;
|
||||
directories = [
|
||||
".ApacheDirectoryStudio"
|
||||
".config/Creality"
|
||||
".config/github-copilot"
|
||||
".config/libreoffice"
|
||||
".config/Nextcloud"
|
||||
".config/OrcaSlicer"
|
||||
".config/rustdesk"
|
||||
".config/Signal"
|
||||
".config/Signal-work"
|
||||
".config/sops"
|
||||
".config/VirtualBox"
|
||||
".local/share/keyrings"
|
||||
".mozilla"
|
||||
".ssh"
|
||||
".thunderbird"
|
||||
"cloud.cloonar.com"
|
||||
"nextcloud.cloonar.com"
|
||||
"cloud.epicenter.works"
|
||||
"OpenAudible"
|
||||
"VirtualBox VMs"
|
||||
"projects"
|
||||
"go"
|
||||
];
|
||||
};
|
||||
# home.persistence."/nix/persist/user/dominik" = {
|
||||
# allowOther = true;
|
||||
# directories = [
|
||||
# ".ApacheDirectoryStudio"
|
||||
# ".config/Creality"
|
||||
# ".config/github-copilot"
|
||||
# ".config/libreoffice"
|
||||
# ".config/Nextcloud"
|
||||
# ".config/OrcaSlicer"
|
||||
# ".config/rustdesk"
|
||||
# ".config/Signal"
|
||||
# ".config/Signal-work"
|
||||
# ".config/sops"
|
||||
# ".config/VirtualBox"
|
||||
# ".local/share/keyrings"
|
||||
# ".local/share/Steam"
|
||||
# ".mozilla"
|
||||
# ".ssh"
|
||||
# ".thunderbird"
|
||||
# ".var"
|
||||
# "cloud.cloonar.com"
|
||||
# "nextcloud.cloonar.com"
|
||||
# "cloud.epicenter.works"
|
||||
# "OpenAudible"
|
||||
# "VirtualBox VMs"
|
||||
# "projects"
|
||||
# "go"
|
||||
# ];
|
||||
# };
|
||||
|
||||
gtk = {
|
||||
enable = true;
|
||||
|
||||
Reference in New Issue
Block a user