thelio76: add package

This commit is contained in:
Alex 2024-08-25 12:31:22 -04:00
parent f44a1a31f6
commit 4d50efa576
4 changed files with 24 additions and 8 deletions

View File

@ -1,7 +1,9 @@
{ ... }:
{ pkgs, ... }:
{
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
home.packages = with pkgs; [ nextcloud-client ];
}

View File

@ -87,10 +87,11 @@
options = [ "bind" "x-gvfs-hide" ];
};
"${homePrefix}/Pictures" = {
device = "${externalPrefix}/Pictures";
options = [ "bind" "x-gvfs-hide" ];
};
## Keep pictures on local disk for space
# "${homePrefix}/Pictures" = {
# device = "${externalPrefix}/Pictures";
# options = [ "bind" "x-gvfs-hide" ];
# };
"${homePrefix}/Videos" = {
device = "${externalPrefix}/Videos";

View File

@ -3,8 +3,15 @@
xsession.windowManager.bspwm =
let
theme = import ../theme.nix "light";
primaryMonitor = "eDP-1"; # = "DP-2" for thelio
windowGap = 2; # = "theme.sizing.xl" for thelio
# TODO make this based on hostname
## thelio settings
primaryMonitor = "DP-2";
windowGap = theme.sizing.xl;
## galago settings
# primaryMonitor = "eDP-1";
# windowGap = 2;
in
{
enable = true;

View File

@ -7,7 +7,13 @@
let
theme = import ../theme.nix "light";
colors = theme.colors;
primaryMonitor = "eDP-1"; # = "DP-2" for thelio
# TODO make this based on hostname
## thelio settings
primaryMonitor = "DP-2";
## galago settings
# primaryMonitor = "eDP-1";
in
rec {
common-bar = {