Day variant
This commit is contained in:
parent
3ffe2bffe6
commit
b3241cc486
3 changed files with 16 additions and 2 deletions
|
@ -57,7 +57,7 @@
|
|||
osaka-linode-01 = libx.mkHost { hostname = "osaka-linode-01"; type = "small"; };
|
||||
framework-server = libx.mkHost { hostname = "framework-server"; };
|
||||
nuc-server = libx.mkHost { hostname = "nuc-server"; };
|
||||
nixos-desktop = libx.mkHost { hostname = "nixos-desktop"; desktop = "hyprland"; theme = "tokyo"; gpu = "nvidia"; };
|
||||
nixos-desktop = libx.mkHost { hostname = "nixos-desktop"; desktop = "hyprland"; theme = "tokyo-day"; gpu = "nvidia"; };
|
||||
nixos-framework = libx.mkHost { hostname = "nixos-framework"; desktop = "hyprland"; gpu = "amd"; theme = "green"; };
|
||||
backups-rpi4 = libx.mkHost { hostname = "backups-rpi4"; platform = "aarch64-linux"; type = "small"; };
|
||||
piaware-rpi4 = libx.mkHost { hostname = "piaware-rpi4"; platform = "aarch64-linux"; type = "small"; };
|
||||
|
@ -67,7 +67,7 @@
|
|||
"albert@osaka-linode-01" = libx.mkHome { hostname = "osaka-linode-01"; };
|
||||
"albert@framework-server" = libx.mkHome { hostname = "framework-server"; };
|
||||
"albert@nuc-server" = libx.mkHome { hostname = "nuc-server"; };
|
||||
"albert@nixos-desktop" = libx.mkHome { hostname = "nixos-desktop"; desktop = "hyprland"; theme = "tokyo"; };
|
||||
"albert@nixos-desktop" = libx.mkHome { hostname = "nixos-desktop"; desktop = "hyprland"; theme = "tokyo-day"; };
|
||||
"albert@nixos-framework" = libx.mkHome { hostname = "nixos-framework"; desktop = "hyprland"; theme = "green"; };
|
||||
"albert@backups-rpi4" = libx.mkHome { hostname = "backups-rpi4"; platform = "aarch64-linux"; type = "small"; };
|
||||
"albert@piaware-rpi4" = libx.mkHome { hostname = "piaware-rpi4"; platform = "aarch64-linux"; type = "small"; };
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
{lib, inputs, pkgs, gpu, platform, theme, ...}: {
|
||||
# Themes https://github.com/tinted-theming/base16-schemes
|
||||
stylix = {
|
||||
image = /etc/nixos/git/wallpapers/${theme}/wallpaper1.png;
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-terminal.yaml";
|
||||
};
|
||||
}
|
7
nixos/common/desktops/hyprland/themes/tokyo-day.nix
Normal file
7
nixos/common/desktops/hyprland/themes/tokyo-day.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{lib, inputs, pkgs, gpu, platform, theme, ...}: {
|
||||
# Themes https://github.com/tinted-theming/base16-schemes
|
||||
stylix = {
|
||||
image = /etc/nixos/git/wallpapers/${theme}/wallpaper1.png;
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-terminal.yaml";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue