added hyprpanel, fixed colmena for laptop, and minor ssh config changes
This commit is contained in:
parent
61b4615aee
commit
9636eab7f6
6 changed files with 132 additions and 60 deletions
|
|
@ -11,6 +11,7 @@
|
|||
};
|
||||
|
||||
imports = [
|
||||
#inputs.hyprpanel.packages.homeManagerModules.hyprpanel
|
||||
../modules/git.nix
|
||||
../modules/bat.nix
|
||||
../modules/fish.nix
|
||||
|
|
@ -115,6 +116,9 @@
|
|||
user = "ae";
|
||||
port = 22;
|
||||
identityFile = "~/.ssh/id_hyrule";
|
||||
setEnv = {
|
||||
TERM = "linux";
|
||||
};
|
||||
};
|
||||
subspace = {
|
||||
hostname = "imbored.dev";
|
||||
|
|
@ -122,9 +126,80 @@
|
|||
port = 22;
|
||||
identityFile = "~/.ssh/id_subspace";
|
||||
};
|
||||
youcue = {
|
||||
hostname = "moss.labs.eait.uq.edu.au";
|
||||
user = "s4740056";
|
||||
port = 22;
|
||||
identityFile = "~/.ssh/id_youcue";
|
||||
setEnv = {
|
||||
TERM = "xterm-256color";
|
||||
};
|
||||
};
|
||||
deadlyserver = {
|
||||
hostname = "deadlyserver.com";
|
||||
user = "emile";
|
||||
port = 29843;
|
||||
identityFile = "~/.ssh/id_deadlyserver";
|
||||
setEnv = {
|
||||
TERM = "xterm-256color";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
/*
|
||||
hyprpanel = {
|
||||
enable = true;
|
||||
# automatically restart when config changes
|
||||
systemd.enable = true; # TODO: change to false
|
||||
# add `exec-once hyprpanel` to hyprland config
|
||||
hyprland.enable = true;
|
||||
|
||||
# fix the overwrite issue with hyprpanel on NixOS
|
||||
overwrite.enable = true;
|
||||
|
||||
# import a theme from './themes/*.json'
|
||||
# theme = "";
|
||||
|
||||
# override the final config
|
||||
#override = {};
|
||||
|
||||
# config the bar layouts for monitors
|
||||
layout = {
|
||||
"bar.layouts" = {
|
||||
"0" = {
|
||||
left = ["dashboard" "workspaces"];
|
||||
middle = ["media"];
|
||||
right = ["volume" "systray" "notifications"];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# settings = {
|
||||
# bar.launcher.autoDetectIcon = true;
|
||||
# bar.workspaces.show_icons = true;
|
||||
#
|
||||
# menus.clock = {
|
||||
# time = {
|
||||
# military = true;
|
||||
# hideSeconds = true;
|
||||
# };
|
||||
# weather.unit = "metric";
|
||||
# };
|
||||
#
|
||||
# menus.dashboard.directories.enabled = false;
|
||||
# menus.dashboard.stats.enable_gpu = true;
|
||||
#
|
||||
# theme.bar.transparent = true;
|
||||
#
|
||||
# theme.font = {
|
||||
# name = "CaskaydiaCove NF";
|
||||
# size = "16px";
|
||||
# };
|
||||
# };
|
||||
};
|
||||
*/
|
||||
|
||||
# I want to use fish as my login shell but it always
|
||||
# goes terrible cause it isn't POSIX compliant, so
|
||||
# instead Bash is my login and it will just exec fish
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue