hotfix de reestructuración

This commit is contained in:
Fabián Montero 2022-11-29 21:47:43 -06:00
parent b29950097c
commit 0bdad7bc4e
8 changed files with 18 additions and 14 deletions

View file

@ -9,10 +9,12 @@ in
imports = [ ./vscode ]; imports = [ ./vscode ];
config = mkIf cfg.enable { config = mkIf cfg.enable {
local.apps.editors.vscode = mkDefault true; local.apps.editors.vscode.enable = mkDefault true;
programs = {
neovim.enable = true; neovim.enable = true;
helix.enable = true; helix.enable = true;
}; };
};
} }

View file

@ -7,13 +7,13 @@ in
options.local.apps.editors.vscode.enable = mkEnableOption "VSCodium"; options.local.apps.editors.vscode.enable = mkEnableOption "VSCodium";
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = [ rust-analyzer ]; home.packages = [ pkgs.rust-analyzer ];
programs.vscode = { programs.vscode = {
enable = true; enable = true;
package = pkgs.vscodium; package = pkgs.vscodium;
mutableExtensionsDir = false; mutableExtensionsDir = false;
extensions = attrValues (pkgs.callPackage ./extensions.nix {}).extensions; extensions = attrValues (pkgs.callPackage ./extensions.nix {}).extensions;
userSettings = import ./settings.nix userSettings = import ./settings.nix;
}; };
}; };
} }

View file

@ -6,7 +6,7 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = [ home.packages = [
(pkgs.callPackage ./package.nix {}) (pkgs.callPackage ./package.nix {})
protonup pkgs.protonup
]; ];
}; };
} }

View file

@ -6,7 +6,6 @@ with lib;
(hm-isolation.homeManagerModule) (hm-isolation.homeManagerModule)
./apps ./apps
./allowUnfreeWhitelist.nix ./allowUnfreeWhitelist.nix
./fonts.nix
./gui ./gui
./isolation.nix ./isolation.nix
./options.nix ./options.nix

View file

@ -6,7 +6,7 @@ in
{ {
options.local.gui = { options.local.gui = {
enable = mkEnableOption "GUI settings and programs"; enable = mkEnableOption "GUI settings and programs";
desktop = mkEnableOption "i3 desktop envirorment" desktop = mkEnableOption "i3 desktop envirorment";
}; };
imports = [ imports = [

View file

@ -10,5 +10,5 @@ in
gruvbox-dark-icons-gtk gruvbox-dark-icons-gtk
libsForQt5.breeze-gtk libsForQt5.breeze-gtk
]; ];
} };
} }

View file

@ -52,8 +52,6 @@ in
"${mod}+Shift+w" = "move workspace to output right"; "${mod}+Shift+w" = "move workspace to output right";
}; };
# menu = "${pkgs.dmenu}/bin/dmenu_run"
startup = [ startup = [
{ {
command = "${pkgs.xss-lock}/bin/xss-lock --transfer-sleep-lock -- ${pkgs.i3lock}/bin/i3lock --nofork"; command = "${pkgs.xss-lock}/bin/xss-lock --transfer-sleep-lock -- ${pkgs.i3lock}/bin/i3lock --nofork";
@ -82,6 +80,11 @@ in
notification = false; notification = false;
always = true; always = true;
} }
{
command = "${pkgs.autorandr}/bin/autorandr -c";
notification = false;
always = true;
}
]; ];
workspaceOutputAssign = [ workspaceOutputAssign = [

View file

@ -1,4 +1,4 @@
{maim, redshift, ...}: '' {maim, redshift, xclip, ...}: ''
# The following lines were added by compinstall # The following lines were added by compinstall
zstyle ':completion:*' auto-description 'specify: %d' zstyle ':completion:*' auto-description 'specify: %d'
@ -74,7 +74,7 @@
alias ls='ls --color -F' alias ls='ls --color -F'
alias l='ls --color -FhAltr' alias l='ls --color -FhAltr'
alias x='killall --ignore-case --user=$(whoami) --interactive' alias x='killall --ignore-case --user=$(whoami) --interactive'
alias sc='${maim}/bin/maim -s -u | ${pkgs.xclip}/bin/xclip -selection clipboard -t image/png -i' alias sc='${maim}/bin/maim -s -u | ${xclip}/bin/xclip -selection clipboard -t image/png -i'
alias tree='tree -CF' alias tree='tree -CF'
alias lock="betterlockscreen -l" alias lock="betterlockscreen -l"
alias nightmode="${redshift}/bin/redshift -P -O 1000" alias nightmode="${redshift}/bin/redshift -P -O 1000"