re-arrange and add sakura-night
This commit is contained in:
parent
2e5701e2cd
commit
bf9e752ec2
8 changed files with 34 additions and 2 deletions
|
@ -61,7 +61,7 @@
|
||||||
framework-server = libx.mkHost { hostname = "framework-server"; };
|
framework-server = libx.mkHost { hostname = "framework-server"; };
|
||||||
nuc-server = libx.mkHost { hostname = "nuc-server"; };
|
nuc-server = libx.mkHost { hostname = "nuc-server"; };
|
||||||
nixos-desktop = libx.mkHost { hostname = "nixos-desktop"; unfree = true; repo = "nixpkgs-unstable"; desktop = "hyprland"; theme = "tokyo-night"; };
|
nixos-desktop = libx.mkHost { hostname = "nixos-desktop"; unfree = true; repo = "nixpkgs-unstable"; desktop = "hyprland"; theme = "tokyo-night"; };
|
||||||
nixos-framework = libx.mkHost { hostname = "nixos-framework"; unfree = true; desktop = "hyprland"; theme = "sakura"; };
|
nixos-framework = libx.mkHost { hostname = "nixos-framework"; unfree = true; desktop = "hyprland"; theme = "sakura-night"; };
|
||||||
backups-rpi4 = libx.mkHost { hostname = "backups-rpi4"; system = "aarch64-linux"; type = "small"; };
|
backups-rpi4 = libx.mkHost { hostname = "backups-rpi4"; system = "aarch64-linux"; type = "small"; };
|
||||||
piaware-rpi4 = libx.mkHost { hostname = "piaware-rpi4"; system = "aarch64-linux"; type = "small"; };
|
piaware-rpi4 = libx.mkHost { hostname = "piaware-rpi4"; system = "aarch64-linux"; type = "small"; };
|
||||||
quitman-rpi4 = libx.mkHost { hostname = "quitman-rpi4"; system = "aarch64-linux"; type = "small"; };
|
quitman-rpi4 = libx.mkHost { hostname = "quitman-rpi4"; system = "aarch64-linux"; type = "small"; };
|
||||||
|
@ -71,7 +71,7 @@
|
||||||
"albert@framework-server" = libx.mkHome { hostname = "framework-server"; };
|
"albert@framework-server" = libx.mkHome { hostname = "framework-server"; };
|
||||||
"albert@nuc-server" = libx.mkHome { hostname = "nuc-server"; };
|
"albert@nuc-server" = libx.mkHome { hostname = "nuc-server"; };
|
||||||
"albert@nixos-desktop" = libx.mkHome { hostname = "nixos-desktop"; desktop = "hyprland"; theme = "tokyo-night"; };
|
"albert@nixos-desktop" = libx.mkHome { hostname = "nixos-desktop"; desktop = "hyprland"; theme = "tokyo-night"; };
|
||||||
"albert@nixos-framework" = libx.mkHome { hostname = "nixos-framework"; desktop = "hyprland"; theme = "sakura"; };
|
"albert@nixos-framework" = libx.mkHome { hostname = "nixos-framework"; desktop = "hyprland"; theme = "sakura-night"; };
|
||||||
"albert@backups-rpi4" = libx.mkHome { hostname = "backups-rpi4"; system = "aarch64-linux"; type = "small"; };
|
"albert@backups-rpi4" = libx.mkHome { hostname = "backups-rpi4"; system = "aarch64-linux"; type = "small"; };
|
||||||
"albert@piaware-rpi4" = libx.mkHome { hostname = "piaware-rpi4"; system = "aarch64-linux"; type = "small"; };
|
"albert@piaware-rpi4" = libx.mkHome { hostname = "piaware-rpi4"; system = "aarch64-linux"; type = "small"; };
|
||||||
"albert@quitman-rpi4" = libx.mkHome { hostname = "quitman-rpi4"; system = "aarch64-linux"; type = "small"; };
|
"albert@quitman-rpi4" = libx.mkHome { hostname = "quitman-rpi4"; system = "aarch64-linux"; type = "small"; };
|
||||||
|
|
|
@ -250,6 +250,7 @@
|
||||||
extraPlugins = with pkgs.vimPlugins; [
|
extraPlugins = with pkgs.vimPlugins; [
|
||||||
everforest
|
everforest
|
||||||
onehalf
|
onehalf
|
||||||
|
rose-pine
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
10
stylix/sakura-night/default.nix
Normal file
10
stylix/sakura-night/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{lib, inputs, pkgs, gpu, system, theme, ...}: {
|
||||||
|
# Themes https://github.com/tinted-theming/base16-schemes
|
||||||
|
stylix = {
|
||||||
|
image = /etc/nixos/git/docs/icons/nixos/white.png;
|
||||||
|
base16Scheme = ./sakura.yaml;
|
||||||
|
autoEnable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
}
|
3
stylix/sakura-night/home-manager/nixvim.nix
Normal file
3
stylix/sakura-night/home-manager/nixvim.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{ lib, ... }: {
|
||||||
|
programs.nixvim.colorscheme = lib.mkForce "rose-pine";
|
||||||
|
}
|
18
stylix/sakura-night/sakura-night.yaml
Normal file
18
stylix/sakura-night/sakura-night.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
scheme: "Rosé Pine Moon"
|
||||||
|
variant: "dark"
|
||||||
|
base00: "232136"
|
||||||
|
base01: "2a273f"
|
||||||
|
base02: "393552"
|
||||||
|
base03: "6e6a86"
|
||||||
|
base04: "908caa"
|
||||||
|
base05: "e0def4"
|
||||||
|
base06: "e0def4"
|
||||||
|
base07: "56526e"
|
||||||
|
base08: "eb6f92"
|
||||||
|
base09: "f6c177"
|
||||||
|
base0A: "ea9a97"
|
||||||
|
base0B: "3e8fb0"
|
||||||
|
base0C: "9ccfd8"
|
||||||
|
base0D: "c4a7e7"
|
||||||
|
base0E: "f6c177"
|
||||||
|
base0F: "56526e"
|
Loading…
Reference in a new issue