This commit is contained in:
Cameron Reed 2024-02-04 16:05:26 -07:00
parent 298d35b92a
commit 781e023c74
6 changed files with 35 additions and 9 deletions

View File

@ -49,11 +49,11 @@
};
general = {
gaps_in = 2;
gaps_out = 2;
gaps_in = 3;
gaps_out = 6;
border_size = 2;
"col.active_border" = "rgba(00aaffee) rgba(00ffffee) -45deg";
"col.active_border" = "rgba(ff970aff) rgba(ff830aff) 45deg";
"col.inactive_border" = "rgba(595959aa)";
layout = "dwindle";
@ -124,6 +124,7 @@
"$mod, Return, exec, $term"
"$mod, B, exec, $browser"
"$mod, E, killactive,"
"$mod, Q, exec, hyprctl kill"
"$mod, left, movefocus, l"
"$mod, right, movefocus, r"

View File

@ -0,0 +1,17 @@
{ pkgs, lib, osConfig, ... }:
{
programs.kitty = {
enable = (builtins.length osConfig.desktop) != 0;
settings = {
background = "#333333";
foreground = "#cccccc";
background_opacity = 0.95;
editor = "nvim";
update_check_interval = 0;
};
};
}

View File

@ -85,7 +85,7 @@ function set_prompt() {
local prefix=""
for i in $(seq 1 "''${#prefixes[@]}"); do
prefix+="%F{''${colors[$i]:-255}}''${prefixes[$i]}%F{255} "
prefix+="%F{''${colors[$i]:-255}}''${prefixes[$i]}%f "
done
PROMPT="[''${prefix}%n@%m %1~]%(#.#.$) "
@ -118,7 +118,7 @@ fi
shellAliases = {
grep = "grep --color=auto";
ls = "ls --color=auto";
ls = "eza --icons --group-directories-first";
nv = "nvim";
nvd = "nvim .";

View File

@ -24,4 +24,8 @@
home.sessionVariables = {
EDITOR = "nvim";
};
home.packages = with pkgs; [
eza
];
}

View File

@ -1,10 +1,12 @@
{ lib, pkgs, inputs, config, osConfig, common_dir, ... }:
{ lib, pkgs, inputs, config, osConfig, ... }:
{
imports = [
(common_dir + /users/cameron/home.nix)
(inputs.common_dir + /users/cameron/home.nix)
];
colorScheme = inputs.nix-colors.colorSchemes.framer;
home.stateVersion = "24.05";
}

View File

@ -1,10 +1,12 @@
{ lib, pkgs, config, osConfig, common_dir, ... }:
{ lib, pkgs, inputs, config, osConfig, ... }:
{
imports = [
(common_dir + /users/cameron/home.nix)
(inputs.common_dir + /users/cameron/home.nix)
];
colorScheme = inputs.nix-colors.colorSchemes.dracula;
home.stateVersion = "23.11";
}