Skip to content

Commit

Permalink
Fix homes for the new config structure!
Browse files Browse the repository at this point in the history
  • Loading branch information
arunoruto committed Feb 4, 2025
1 parent 78a834a commit 3a0c661
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 65 deletions.
16 changes: 7 additions & 9 deletions homes/mar/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
{ config, lib, ... }:
{
imports = [
../../modules/home-manager/home.nix
];

shell.main = "fish";
programs = lib.optionalAttrs (!config.hosts.tinypc.enable) {
fish.enable = true;
nushell.enable = true;
zsh.enable = true;
config = {
shell.main = "fish";
programs = lib.optionalAttrs (!config.hosts.tinypc.enable) {
fish.enable = true;
nushell.enable = true;
zsh.enable = true;
};
};
}
4 changes: 0 additions & 4 deletions homes/mirza/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
{ config, lib, ... }:
{
# imports = [
# ../../modules/home-manager/home.nix
# ];

config = {
shell.main = "fish";
programs = lib.optionalAttrs (!config.hosts.tinypc.enable) {
Expand Down
44 changes: 23 additions & 21 deletions systems/kyuubi/home.nix
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
{ lib, pkgs, ... }:
{ ... }:
{
home.file = {
".config/monitors.xml".source = ./monitors.xml;
};
config = {
home.file = {
".config/monitors.xml".source = ./monitors.xml;
};

wayland.windowManager.hyprland.settings = {
monitor = [
"DP-1, 1920x1080,0x0,1"
"DVI-I-1,1920x1200,-1200x-420,1,transform,1"
];
wayland.windowManager.hyprland.settings = {
monitor = [
"DP-1, 1920x1080,0x0,1"
"DVI-I-1,1920x1200,-1200x-420,1,transform,1"
];

workspace = [
"1, monitor:DP-1"
"2, monitor:DP-1"
"3, monitor:DP-1"
"4, monitor:DP-1"
"5, monitor:DP-1"
"6, monitor:DVI-I-1"
"7, monitor:DVI-I-1"
"8, monitor:DVI-I-1"
"9, monitor:DVI-I-1"
"10, monitor:DVI-I-1"
];
workspace = [
"1, monitor:DP-1"
"2, monitor:DP-1"
"3, monitor:DP-1"
"4, monitor:DP-1"
"5, monitor:DP-1"
"6, monitor:DVI-I-1"
"7, monitor:DVI-I-1"
"8, monitor:DVI-I-1"
"9, monitor:DVI-I-1"
"10, monitor:DVI-I-1"
];
};
};
}
64 changes: 33 additions & 31 deletions systems/madara/home.nix
Original file line number Diff line number Diff line change
@@ -1,37 +1,39 @@
{ lib, pkgs, ... }:
{ ... }:
{
# dconf.settings = {
# "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0" = lib.mkForce {
# name = "Terminal Super";
# #command = "env WAYLAND_DISPLAY= alacritty";
# #command = "wezterm start --always-new-process";
# command = "${lib.getExe pkgs.alacritty}";
# binding = "<Super>Return";
# };
# };
# terminals.alacritty.enable = true;
config = {
# dconf.settings = {
# "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0" = lib.mkForce {
# name = "Terminal Super";
# #command = "env WAYLAND_DISPLAY= alacritty";
# #command = "wezterm start --always-new-process";
# command = "${lib.getExe pkgs.alacritty}";
# binding = "<Super>Return";
# };
# };
# terminals.alacritty.enable = true;

home.file = {
".config/monitors.xml".source = ./monitors.xml;
};
home.file = {
".config/monitors.xml".source = ./monitors.xml;
};

wayland.windowManager.hyprland.settings = {
monitor = [
"DP-1, 1920x1080,0x0,1"
"DVI-I-1,1920x1200,-1200x-420,1,transform,1"
];
wayland.windowManager.hyprland.settings = {
monitor = [
"DP-1, 1920x1080,0x0,1"
"DVI-I-1,1920x1200,-1200x-420,1,transform,1"
];

workspace = [
"1, monitor:DP-1"
"2, monitor:DP-1"
"3, monitor:DP-1"
"4, monitor:DP-1"
"5, monitor:DP-1"
"6, monitor:DVI-I-1"
"7, monitor:DVI-I-1"
"8, monitor:DVI-I-1"
"9, monitor:DVI-I-1"
"10, monitor:DVI-I-1"
];
workspace = [
"1, monitor:DP-1"
"2, monitor:DP-1"
"3, monitor:DP-1"
"4, monitor:DP-1"
"5, monitor:DP-1"
"6, monitor:DVI-I-1"
"7, monitor:DVI-I-1"
"8, monitor:DVI-I-1"
"9, monitor:DVI-I-1"
"10, monitor:DVI-I-1"
];
};
};
}

0 comments on commit 3a0c661

Please sign in to comment.