thelio76: add package
This commit is contained in:
parent
f44a1a31f6
commit
4d50efa576
|
@ -1,7 +1,9 @@
|
|||
{ ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
services.nextcloud-client = {
|
||||
enable = true;
|
||||
startInBackground = true;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [ nextcloud-client ];
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue