mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-24 13:45:29 -08:00
Compare commits
3 commits
e1ca37ce27
...
4ddb9d544f
Author | SHA1 | Date | |
---|---|---|---|
4ddb9d544f | |||
8b4e230eda | |||
346fe4bd31 |
4 changed files with 67 additions and 3 deletions
1
home.nix
1
home.nix
|
@ -94,6 +94,7 @@ in
|
||||||
#./modules/emacs.nix
|
#./modules/emacs.nix
|
||||||
./modules/git.nix
|
./modules/git.nix
|
||||||
./modules/neovim.nix
|
./modules/neovim.nix
|
||||||
|
./modules/kitty.nix
|
||||||
./modules/rofi.nix
|
./modules/rofi.nix
|
||||||
./modules/tmux.nix
|
./modules/tmux.nix
|
||||||
./modules/wezterm.nix
|
./modules/wezterm.nix
|
||||||
|
|
|
@ -3,7 +3,10 @@
|
||||||
{
|
{
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
discord # because you *always* want your friends around
|
(discord.override {
|
||||||
|
withOpenASAR = true;
|
||||||
|
}) # because you *always* want your friends around
|
||||||
|
webcord
|
||||||
betterdiscordctl # sudo apt upgrade discord (betterdiscordctl install)
|
betterdiscordctl # sudo apt upgrade discord (betterdiscordctl install)
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{config, pkgs, ...}:
|
{config, pkgs, osConfig, ...}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
@ -21,6 +21,15 @@ in
|
||||||
# Whether to enable patching wlroots for better Nvidia support
|
# Whether to enable patching wlroots for better Nvidia support
|
||||||
enableNvidiaPatches = true;
|
enableNvidiaPatches = true;
|
||||||
|
|
||||||
|
extraConfig = if (osConfig.networking.hostName == "NicksNixDesktop") then
|
||||||
|
''
|
||||||
|
monitor=DP-2, 2560x1440@144, 1920x0, 1
|
||||||
|
monitor=DP-3, 1920x1080@60, 0x360,1
|
||||||
|
''
|
||||||
|
else ''
|
||||||
|
|
||||||
|
'';
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
exec-once = [
|
exec-once = [
|
||||||
"${pkgs.swww}/bin/swww init & sleep 0.5 & ${pkgs.swww}/bin/swww /home/nixolas/Downloads/RecountERD.png"
|
"${pkgs.swww}/bin/swww init & sleep 0.5 & ${pkgs.swww}/bin/swww /home/nixolas/Downloads/RecountERD.png"
|
||||||
|
@ -41,7 +50,10 @@ in
|
||||||
];
|
];
|
||||||
|
|
||||||
bind = [
|
bind = [
|
||||||
"$mod, RETURN, exec, wezterm start --always-new-process"
|
"$mod, RETURN, exec, kitty"
|
||||||
|
"$mod, r, exec, rofi -show run window"
|
||||||
|
"$mod, q, killactive"
|
||||||
|
"$mod_SHIFT, p, exit"
|
||||||
# "$mod, Q, exec, firefox"
|
# "$mod, Q, exec, firefox"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
48
modules/kitty.nix
Normal file
48
modules/kitty.nix
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
in
|
||||||
|
{
|
||||||
|
|
||||||
|
programs.kitty = {
|
||||||
|
enable = true;
|
||||||
|
shellIntegration.enableZshIntegration = true;
|
||||||
|
# theme = "colbalt-neon";
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
shell = "zsh";
|
||||||
|
background_blur = "4";
|
||||||
|
background_opacity = "0.8";
|
||||||
|
foreground = "#F4EFD6";
|
||||||
|
background = "#202020";
|
||||||
|
|
||||||
|
color0 = "#000000";
|
||||||
|
color8 = "#404040";
|
||||||
|
|
||||||
|
color1 = "#e44b4b";
|
||||||
|
color9 = "#ff0000";
|
||||||
|
|
||||||
|
color2 = "#00cd00";
|
||||||
|
color10 = "#00ff00";
|
||||||
|
|
||||||
|
color3 = "#cdcd00";
|
||||||
|
color11 = "#ffff00";
|
||||||
|
|
||||||
|
color4 = "#0091f1";
|
||||||
|
color12 = "#48b3fb";
|
||||||
|
|
||||||
|
color5 = "#cd00cd";
|
||||||
|
color13 = "#ff00ff";
|
||||||
|
|
||||||
|
color6 = "#00cdcd";
|
||||||
|
color14 = "#00ffff";
|
||||||
|
|
||||||
|
color7 = "#faebd7";
|
||||||
|
color15 = "#ffffff";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue