update flake, add nixvim, disable librewolf as declarative addons are not currently available, add nextcloud-client

This commit is contained in:
Gabriella Bere 2024-09-01 20:55:06 +01:00
parent da68527e3c
commit 0430e15d54
7 changed files with 284 additions and 13 deletions

View file

@ -14,13 +14,14 @@
./zsh.nix
./eza.nix
./nixvim.nix
./nextcloud.nix
];
# States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed
home.stateVersion = "24.05";
# services.pass-secret-service.enable = true; # for use with protonmail-bridge
services.gnome-keyring.enable = true; # should be easier for protonmail-bridge
services.gnome-keyring.enable = true; # used for protonmail-bridge and nextcloud-client
# Cursor configuration that I hope to one day understand, currently has a scaling issue but thats probably my fault
home.pointerCursor =
@ -50,6 +51,7 @@
# Add grimblast screenshot tool
pkgs.grimblast
pkgs.powerline-fonts
pkgs.nix-output-monitor
];
home.sessionVariables = {

View file

@ -2,7 +2,7 @@
{
programs.librewolf = {
enable = true;
package = stablepkgs.librewolf;
package = pkgs.librewolf;
settings = {
"privacy.clearOnShutdown.history" = false;
"privacy.clearOnShutdown.downloads" = false;

View file

@ -0,0 +1,6 @@
{ config, pkgs, ... }: {
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
}

View file

@ -2,6 +2,6 @@
programs.nixvim = {
enable = true;
plugins.neotree.enable = true;
# plugins.neotree.enable = true;
};
}

View file

@ -13,7 +13,7 @@
# Aliases for my nixos workflow, requires nh and home-manager
switch = "nh os switch";
homeswitch = "home-manager switch --flake /home/blue/nixos";
homeswitch = "home-manager switch --flake /home/blue/nixos |& nom";
};
plugins = with pkgs; [