thelio76: add package
This commit is contained in:
parent
f44a1a31f6
commit
4d50efa576
|
@ -1,7 +1,9 @@
|
||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
services.nextcloud-client = {
|
services.nextcloud-client = {
|
||||||
enable = true;
|
enable = true;
|
||||||
startInBackground = true;
|
startInBackground = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [ nextcloud-client ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -87,10 +87,11 @@
|
||||||
options = [ "bind" "x-gvfs-hide" ];
|
options = [ "bind" "x-gvfs-hide" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
"${homePrefix}/Pictures" = {
|
## Keep pictures on local disk for space
|
||||||
device = "${externalPrefix}/Pictures";
|
# "${homePrefix}/Pictures" = {
|
||||||
options = [ "bind" "x-gvfs-hide" ];
|
# device = "${externalPrefix}/Pictures";
|
||||||
};
|
# options = [ "bind" "x-gvfs-hide" ];
|
||||||
|
# };
|
||||||
|
|
||||||
"${homePrefix}/Videos" = {
|
"${homePrefix}/Videos" = {
|
||||||
device = "${externalPrefix}/Videos";
|
device = "${externalPrefix}/Videos";
|
||||||
|
|
|
@ -3,8 +3,15 @@
|
||||||
xsession.windowManager.bspwm =
|
xsession.windowManager.bspwm =
|
||||||
let
|
let
|
||||||
theme = import ../theme.nix "light";
|
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
|
in
|
||||||
{
|
{
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -7,7 +7,13 @@
|
||||||
let
|
let
|
||||||
theme = import ../theme.nix "light";
|
theme = import ../theme.nix "light";
|
||||||
colors = theme.colors;
|
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
|
in
|
||||||
rec {
|
rec {
|
||||||
common-bar = {
|
common-bar = {
|
||||||
|
|
Loading…
Reference in New Issue