This commit is contained in:
Sam 2024-06-02 14:30:14 +01:00
parent 2c8dcf74e4
commit 33d41f4256
10 changed files with 169 additions and 21 deletions

View File

@ -1,5 +1,21 @@
{
"nodes": {
"base16-schemes": {
"flake": false,
"locked": {
"lastModified": 1696158499,
"narHash": "sha256-5yIHgDTPjoX/3oDEfLSQ0eJZdFL1SaCfb9d6M0RmOTM=",
"owner": "tinted-theming",
"repo": "base16-schemes",
"rev": "a9112eaae86d9dd8ee6bb9445b664fba2f94037a",
"type": "github"
},
"original": {
"owner": "tinted-theming",
"repo": "base16-schemes",
"type": "github"
}
},
"devshell": {
"inputs": {
"flake-utils": "flake-utils",
@ -231,6 +247,25 @@
"type": "github"
}
},
"nix-colors": {
"inputs": {
"base16-schemes": "base16-schemes",
"nixpkgs-lib": "nixpkgs-lib"
},
"locked": {
"lastModified": 1707825078,
"narHash": "sha256-hTfge2J2W+42SZ7VHXkf4kjU+qzFqPeC9k66jAUBMHk=",
"owner": "misterio77",
"repo": "nix-colors",
"rev": "b01f024090d2c4fc3152cd0cf12027a7b8453ba1",
"type": "github"
},
"original": {
"owner": "misterio77",
"repo": "nix-colors",
"type": "github"
}
},
"nix-darwin": {
"inputs": {
"nixpkgs": [
@ -282,6 +317,21 @@
"type": "indirect"
}
},
"nixpkgs-lib": {
"locked": {
"lastModified": 1697935651,
"narHash": "sha256-qOfWjQ2JQSQL15KLh6D7xQhx0qgZlYZTYlcEiRuAMMw=",
"owner": "nix-community",
"repo": "nixpkgs.lib",
"rev": "e1e11fdbb01113d85c7f41cada9d2847660e3902",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "nixpkgs.lib",
"type": "github"
}
},
"nixpkgs-stable": {
"locked": {
"lastModified": 1716655032,
@ -347,6 +397,7 @@
"disko": "disko",
"home-manager": "home-manager",
"impermanence": "impermanence",
"nix-colors": "nix-colors",
"nix-secrets": "nix-secrets",
"nixpkgs": "nixpkgs",
"nixpkgs-unstable": "nixpkgs-unstable",

View File

@ -20,6 +20,9 @@
inputs.nixpkgs.follows = "nixpkgs";
};
# Nix colors
nix-colors.url = "github:misterio77/nix-colors";
# Declarative partitioning and formatting
disko = {
url = "github:nix-community/disko";

View File

@ -1,12 +1,12 @@
{ config, lib, pkgs, outputs, ... }:
{ config, lib, pkgs, outputs, inputs, ... }:
{
imports = [
inputs.nix-colors.homeManagerModules.default
./zsh.nix
./nixvim.nix
./fonts.nix
] ;
# Global home packages without config go here (for all hosts and users)
home.packages = builtins.attrValues {
inherit (pkgs)

View File

@ -1,4 +1,4 @@
{ inputs, pkgs, ... }: {
{ inputs, pkgs, config, ... }: {
imports = [
inputs.nixvim.homeManagerModules.nixvim
];
@ -23,6 +23,29 @@
};
};
# Base16 colorscheme
# colorschemes.base16 = {
# enable = true;
# colorscheme = {
# base00 = "#${config.colorScheme.colors.base00}";
# base01 = "#${config.colorScheme.colors.base01}";
# base02 = "#${config.colorScheme.colors.base02}";
# base03 = "#${config.colorScheme.colors.base03}";
# base04 = "#${config.colorScheme.colors.base04}";
# base05 = "#${config.colorScheme.colors.base05}";
# base06 = "#${config.colorScheme.colors.base06}";
# base07 = "#${config.colorScheme.colors.base07}";
# base08 = "#${config.colorScheme.colors.base08}";
# base09 = "#${config.colorScheme.colors.base09}";
# base0A = "#${config.colorScheme.colors.base0A}";
# base0B = "#${config.colorScheme.colors.base0B}";
# base0C = "#${config.colorScheme.colors.base0C}";
# base0D = "#${config.colorScheme.colors.base0D}";
# base0E = "#${config.colorScheme.colors.base0E}";
# base0F = "#${config.colorScheme.colors.base0F}";
# };
# };
opts = {
#
# ========= General Appearance =========
@ -101,6 +124,10 @@
fileTypes = [ "*" ];
};
plugins.treesitter = {
enable = true;
};
plugins.lualine = {
enable = true;
theme = "auto";

View File

@ -82,6 +82,23 @@
HISTSIZE=10000000
SAVEHIST=10000000
setopt appendhistory
# Change cursor shape for different vi modes.
function zle-keymap-select () {
case $KEYMAP in
vicmd) echo -ne '\e[1 q';; # block
viins|main) echo -ne '\e[5 q';; # beam
esac
}
zle -N zle-keymap-select
zle-line-init() {
zle -K viins # initiate `vi insert` as keymap (can be removed if `bindkey -V` has been set elsewhere)
echo -ne "\e[5 q"
}
zle -N zle-line-init
echo -ne '\e[5 q' # Use beam shape cursor on startup.
preexec() { echo -ne '\e[5 q' ;} # Use beam shape cursor for each new prompt.
'';
};
}

View File

@ -7,6 +7,37 @@ in
enable = true;
settings = {
colors = with config.colorScheme.palette; {
bright = {
black = "0x${base03}";
blue = "0x${base04}";
cyan = "0x${base0F}";
green = "0x${base01}";
magenta = "0x${base06}";
red = "0x${base09}";
white = "0x${base07}";
yellow = "0x${base02}";
};
cursor = {
cursor = "0x${base05}";
text = "0x${base00}";
};
normal = {
black = "0x${base00}";
blue = "0x${base0D}";
cyan = "0x${base0C}";
green = "0x${base0B}";
magenta = "0x${base0E}";
red = "0x${base08}";
white = "0x${base05}";
yellow = "0x${base0A}";
};
primary = {
background = "0x${base00}";
foreground = "0x${base05}";
};
};
window.padding = {
x = 5;
y = 5;
@ -14,7 +45,6 @@ in
shell.program = "${pkgs.zsh}/bin/zsh";
cursor.style = "Beam";
};
};
}

View File

@ -6,6 +6,7 @@
# Global packages for desktop environments
home.packages = [
pkgs.alacritty
pkgs.libnotify
pkgs.zathura
pkgs.xfce.thunar
pkgs.wofi

View File

@ -9,6 +9,7 @@
../wallpaper-changer/swww-wallpaper-changer
../common
../waybar.nix
../mako.nix
];
wayland.windowManager.hyprland = {
enable = true;
@ -21,9 +22,12 @@
"systemctl --user start hyprland-session.target"
];
};
extraConfig = let
monitor = "${toString (builtins.map (m: "monitor=${ m.name },${ toString( m.width ) }x${ toString( m.height ) }@${ toString( m.refreshRate ) },${ toString( m.x ) }x${ toString( m.y ) },${ toString( m.scale ) }\n") config.monitors)}";
in ''
extraConfig =
let
monitor = "${toString (builtins.map (m: "monitor=${ m.name },${ toString( m.width ) }x${ toString( m.height ) }@${ toString( m.refreshRate ) },${ toString( m.x ) }x${ toString( m.y ) },${ toString( m.scale ) }\n") config.monitors)}";
active = "rgba(${config.colorScheme.colors.base08}ee)";
inactive = "rgba(${config.colorScheme.colors.base0C}ee)";
in ''
${monitor}
$terminal = alacritty
@ -51,8 +55,8 @@
gaps_in = 10
gaps_out = 10
border_size = 2
col.active_border = rgba(22ff00ee)
col.inactive_border = rgba(aecbb4ee)
col.active_border = ${active}
col.inactive_border = ${inactive}
layout = dwindle
allow_tearing = false
}

View File

@ -0,0 +1,12 @@
{ pkgs, config, ... }:
{
services.mako = {
enable = true;
backgroundColor = "#${config.colorScheme.colors.base00}";
borderColor = "#${config.colorScheme.colors.base0D}";
borderRadius = 5;
borderSize = 2;
textColor = "#${config.colorScheme.colors.base05}";
layer = "overlay";
};
}

View File

@ -2,6 +2,7 @@
pkgs,
config,
lib,
inputs,
...
}: {
imports = [
@ -18,6 +19,8 @@
];
colorScheme = inputs.nix-colors.colorSchemes.kanagawa;
monitors = [
{
name = "DP-1";