From 3a3c46d7d9d4da663f22d063b478224c83a2e403 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Montero?= Date: Mon, 8 Aug 2022 17:23:23 -0600 Subject: [PATCH] cambia uuid de disco que bootea, updatea i3config --- base/hardware-configuration-custom.nix | 2 +- home/desktop/i3.nix | 14 +++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/base/hardware-configuration-custom.nix b/base/hardware-configuration-custom.nix index 28a6153..0a051a8 100644 --- a/base/hardware-configuration-custom.nix +++ b/base/hardware-configuration-custom.nix @@ -25,7 +25,7 @@ in { "/" = subvol "root"; "/toplevel" = subvol "/"; "/boot" = { - device = "/dev/disk/by-uuid/98C2-560B"; + device = "/dev/disk/by-uuid/B007-B007"; fsType = "vfat"; options = ["umask=027"]; }; diff --git a/home/desktop/i3.nix b/home/desktop/i3.nix index 48907da..f8ebbac 100644 --- a/home/desktop/i3.nix +++ b/home/desktop/i3.nix @@ -25,6 +25,10 @@ hideEdgeBorders = "both"; }; + floating = { + border = 0; + }; + # mkOptionDefault hace que se ponga la config por default # y se sobreescriba las cosas que pongo acA # NO QUITARLO. ver man home-configuration.nix @@ -58,24 +62,24 @@ always = true; } { - command = "${pkgs.i3-gaps}/bin/i3-msg 'workspace $ws1; exec ${pkgs.firefox}/bin/firefox'"; + command = "${pkgs.i3-gaps}/bin/i3-msg 'workspace 1; exec ${pkgs.firefox}/bin/firefox'"; } { - command = "${pkgs.i3-gaps}/bin/i3-msg 'workspace $ws1; exec ${pkgs.tdesktop}/bin/telegram-desktop'"; + command = "${pkgs.i3-gaps}/bin/i3-msg 'workspace 1; exec ${pkgs.tdesktop}/bin/telegram-desktop'"; } { - command = "${pkgs.i3-gaps}/bin/i3-msg 'workspace $ws1; exec ${pkgs.signal-desktop}/bin/signal-desktop'"; + command = "${pkgs.i3-gaps}/bin/i3-msg 'workspace 1; exec ${pkgs.signal-desktop}/bin/signal-desktop'"; } ]; workspaceOutputAssign = [ { output = "DisplayPort-0"; - workspace = "$ws1"; + workspace = "1"; } { output = "DisplayPort-1"; - workspace = "$ws10"; + workspace = "10"; } ];