Compare commits
2 Commits
93aeb0019e
...
5506ca07a2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5506ca07a2 | ||
|
|
0e71c1a637 |
10
flake.nix
10
flake.nix
@@ -24,9 +24,9 @@
|
|||||||
# Specify your home configuration modules here, for example,
|
# Specify your home configuration modules here, for example,
|
||||||
# the path to your home.nix.
|
# the path to your home.nix.
|
||||||
modules = [
|
modules = [
|
||||||
./home-manager/common.nix
|
./home-manager/common.nix
|
||||||
./home-manager/lenny.nix
|
./home-manager/lenny.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Optionally use extraSpecialArgs
|
# Optionally use extraSpecialArgs
|
||||||
# to pass through arguments to home.nix
|
# to pass through arguments to home.nix
|
||||||
@@ -39,8 +39,8 @@
|
|||||||
# Specify your home configuration modules here, for example,
|
# Specify your home configuration modules here, for example,
|
||||||
# the path to your home.nix.
|
# the path to your home.nix.
|
||||||
modules = [
|
modules = [
|
||||||
./home-manager/common.nix
|
./home-manager/common.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,7 +25,8 @@
|
|||||||
# ==========================
|
# ==========================
|
||||||
# # The config file consists of simple key-value pairs,
|
# # The config file consists of simple key-value pairs,
|
||||||
# # separated by equals signs.
|
# # separated by equals signs.
|
||||||
font-family = Iosevka
|
font-family = FiraCode Nerd Font Mono
|
||||||
|
font-size = 14
|
||||||
# window-padding-x = 2
|
# window-padding-x = 2
|
||||||
#
|
#
|
||||||
# # Spacing around the equals sign does not matter.
|
# # Spacing around the equals sign does not matter.
|
||||||
|
|||||||
@@ -31,6 +31,7 @@
|
|||||||
|
|
||||||
#wezterm
|
#wezterm
|
||||||
ghostty
|
ghostty
|
||||||
|
ghostty.terminfo
|
||||||
|
|
||||||
# Editors
|
# Editors
|
||||||
emacs
|
emacs
|
||||||
@@ -72,6 +73,9 @@
|
|||||||
python3
|
python3
|
||||||
uv
|
uv
|
||||||
|
|
||||||
|
# Password manager
|
||||||
|
keepassxc
|
||||||
|
|
||||||
#uutils-coreutils
|
#uutils-coreutils
|
||||||
|
|
||||||
# # It is sometimes useful to fine-tune packages, for example, by applying
|
# # It is sometimes useful to fine-tune packages, for example, by applying
|
||||||
|
|||||||
@@ -1,16 +1,42 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
ansible
|
ansible
|
||||||
awscli2
|
awscli2
|
||||||
cargo-cross
|
cargo-cross
|
||||||
rustup
|
rustup
|
||||||
rustc
|
rustc
|
||||||
gcc
|
gcc
|
||||||
python3Packages.jedi-language-server
|
python3Packages.jedi-language-server
|
||||||
ruff
|
ruff
|
||||||
vial
|
vial
|
||||||
chromium
|
chromium
|
||||||
|
|
||||||
|
# Bloque VS Code corregido
|
||||||
|
((pkgs.vscode-with-extensions.override {
|
||||||
|
vscodeExtensions = with pkgs.vscode-extensions; [
|
||||||
|
jnoortheen.nix-ide
|
||||||
|
ms-python.python
|
||||||
|
ms-vscode-remote.remote-containers
|
||||||
|
ms-azuretools.vscode-docker
|
||||||
|
ms-vscode-remote.remote-ssh
|
||||||
|
vscodevim.vim
|
||||||
|
yzhang.markdown-all-in-one
|
||||||
|
];
|
||||||
|
}).overrideAttrs (oldAttrs: {
|
||||||
|
makeWrapperArgs = (oldAttrs.makeWrapperArgs or []) ++ [
|
||||||
|
"--set-default" "NIXOS_OZONE_WL" "1"
|
||||||
|
];
|
||||||
|
})) # Los paréntesis dobles aseguran que se evalúe como un paquete único
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
home.file = {
|
||||||
|
".config/Code/User/settings.json".text = ''
|
||||||
|
{
|
||||||
|
"window.titleBarStyle": "custom"
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
1
jj/.config/jj/.gitignore
vendored
Normal file
1
jj/.config/jj/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
repos
|
||||||
@@ -25,3 +25,6 @@ default-command = ["log", "--reversed"]
|
|||||||
|
|
||||||
[merge-tools.delta]
|
[merge-tools.delta]
|
||||||
diff-args=["--color-only", "--side-by-side", "$left", "$right", "--width=$width"]
|
diff-args=["--color-only", "--side-by-side", "$left", "$right", "--width=$width"]
|
||||||
|
|
||||||
|
[revset-aliases]
|
||||||
|
'private_commits()' = "description('[local]')"
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ output "DP-1" {
|
|||||||
// Run `niri msg outputs` while inside a niri instance to list all outputs and their modes.
|
// Run `niri msg outputs` while inside a niri instance to list all outputs and their modes.
|
||||||
//mode "3840x2160@60"
|
//mode "3840x2160@60"
|
||||||
mode "3840x2160@60"
|
mode "3840x2160@60"
|
||||||
scale 1.25
|
scale 1.5
|
||||||
//mode "1920x1080@60"
|
//mode "1920x1080@60"
|
||||||
//mode "2560x1440"
|
//mode "2560x1440"
|
||||||
//scale 1
|
//scale 1
|
||||||
|
|||||||
Reference in New Issue
Block a user