updated eva-03
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
{
|
||||
pkgs,
|
||||
pkgs-unstable,
|
||||
lib,
|
||||
hostname,
|
||||
...
|
||||
@@ -48,8 +49,7 @@
|
||||
openconnect
|
||||
openssl
|
||||
ripgrep
|
||||
sage
|
||||
tailscale
|
||||
# sage
|
||||
termusic
|
||||
timg
|
||||
tldr
|
||||
@@ -110,7 +110,7 @@
|
||||
# cli
|
||||
parted
|
||||
traceroute
|
||||
];
|
||||
];
|
||||
|
||||
programs = {
|
||||
ssh = {
|
||||
|
||||
@@ -25,12 +25,8 @@
|
||||
extraConfig = {
|
||||
gpg = {
|
||||
format = "ssh";
|
||||
ssh = {
|
||||
program = if hostname == "eva-02"
|
||||
then
|
||||
"/Applications/1Password.app/Contents/MacOS/op-ssh-sign"
|
||||
else
|
||||
"/usr/bin/op-ssh-sign";
|
||||
ssh = lib.optionalAttrs (hostname == "eva-02") {
|
||||
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -17,8 +17,7 @@
|
||||
./startup.nix
|
||||
./telescope.nix
|
||||
./which-key.nix
|
||||
]
|
||||
++ lib.optional (hostname != "eva-02") ./codecompanion.nix;
|
||||
];
|
||||
|
||||
programs.nixvim.plugins = {
|
||||
cmp-nvim-lsp.enable = true;
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{ config, configPath, ... }:
|
||||
{ config, ... }:
|
||||
{
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
settings = {
|
||||
# === Monitor configuration ===
|
||||
monitor = "eDP-1, 1920x1080@60.03300, 0x0, 1.25";
|
||||
monitor = "eDP-1, 2560x1440@60.03300, 0x0, 1.25";
|
||||
|
||||
# === Autostart / Exec commands ===
|
||||
exec-once = [
|
||||
@@ -13,7 +13,7 @@
|
||||
"ghostty"
|
||||
"swww-daemon"
|
||||
"eww daemon"
|
||||
"swww img ${configPath}/assets/ena/wallpaper.png"
|
||||
#"swww img ${configPath}/assets/ena/wallpaper.png"
|
||||
];
|
||||
|
||||
# === Input settings ===
|
||||
|
||||
@@ -11,14 +11,14 @@
|
||||
};
|
||||
background = [
|
||||
{
|
||||
path = "${configPath}/assets/ena/wallpaper.png";
|
||||
#path = "${configPath}/assets/ena/wallpaper.png";
|
||||
blur_passes = 3;
|
||||
blur_size = 8;
|
||||
}
|
||||
];
|
||||
image = [
|
||||
{
|
||||
path = "${configPath}/assets/pfp.jpg";
|
||||
#path = "${configPath}/assets/pfp.jpg";
|
||||
size = 150;
|
||||
border_size = 4;
|
||||
border_color = "rgb(0C96F9)";
|
||||
|
||||
@@ -106,7 +106,7 @@
|
||||
"dummy"
|
||||
"mode-switcher"
|
||||
];
|
||||
background-image = mkLiteral "url(\"${configPath}/assets/background.png\", width)";
|
||||
#background-image = mkLiteral "url(\"${configPath}/assets/background.png\", width)";
|
||||
};
|
||||
|
||||
"entry" = {
|
||||
|
||||
Reference in New Issue
Block a user