Compare commits

..

2 Commits

4 changed files with 91 additions and 2 deletions
+3 -1
View File
@@ -77,9 +77,11 @@
force_default_wallpaper=0 force_default_wallpaper=0
} }
workspace = 1, monitor:HDMI-A-2
workspace = 2, monitor:DP-2
monitor = DP-2, 2560x1440@180, 0x0, 1#, bitdepth, 10, cm, hdr monitor = DP-2, 2560x1440@180, 0x0, 1#, bitdepth, 10, cm, hdr
#monitor = DP-2, 1920x1080@180, 0x0, 1#, bitdepth, 10, cm, hdr #monitor = DP-2, 1920x1080@180, 0x0, 1#, bitdepth, 10, cm, hdr
monitor = HDMI-A-1, 1920x1080@60, 2560x0, 1 monitor = HDMI-A-2, 1920x1080@60, 2560x0, 1
bind=$mainMod, Q, exec, $terminal bind=$mainMod, Q, exec, $terminal
bind=$mainMod, C, killactive bind=$mainMod, C, killactive
+3 -1
View File
@@ -8,9 +8,11 @@
{ {
imports = [ imports = [
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
inputs.stylix.nixosModules.stylix
./stylix.nix
]; ];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.tmp.cleanOnBoot = true; boot.tmp.cleanOnBoot = true;
+78
View File
@@ -0,0 +1,78 @@
{
inputs,
pkgs,
...
}:
{
stylix =
let
palette = {
base00 = "11111a"; # #11111a
base01 = "181825"; # #181825
base02 = "313244"; # #313244
base03 = "45475a"; # #45475a
base04 = "585b70"; # #585b70
base05 = "cdd6f4"; # #cdd6f4
base06 = "f5e0dc"; # #f5e0dc
base07 = "b4befe"; # #b4befe
base08 = "f38ba8"; # #f38ba8
base09 = "fab387"; # #fab387
base0A = "f9e2af"; # #f9e2af
base0B = "a6e3a1"; # #a6e3a1
base0C = "94e2d5"; # #94e2d5
base0D = "f5c2e7"; # #f5c2e7
base0E = "cba6f7"; # #cba6f7
base0F = "f2cdcd"; # #f2cdcd
#base00 = "1d2021"; # #1d2021
#base01 = "3c3836"; # #3c3836
#base02 = "504945"; # #504945
#base03 = "665c54"; # #665c54
#base04 = "bdae93"; # #bdae93
#base05 = "d5c4a1"; # #d5c4a1
#base06 = "ebdbb2"; # #ebdbb2
#base07 = "fbf1c7"; # #fbf1c7
#base08 = "fb4934"; # #fb4934
#base09 = "fe8019"; # #fe8019
#base0A = "fabd2f"; # #fabd2f
#base0B = "b8bb26"; # #b8bb26
#base0C = "8ec07c"; # #8ec07c
#base0D = "83a598"; # #83a598
#base0E = "d3869b"; # #d3869b
#base0F = "d65d0e"; # #d65d0e
};
wallpaper = inputs.nix-wallpaper.packages.${pkgs.stdenv.hostPlatform.system}.default.override {
width = 2560;
height = 1440;
backgroundColor = "#${palette.base00}";
logoColors = {
color0 = "#${palette.base0D}";
color1 = "#${palette.base0D}";
color2 = "#${palette.base0D}";
color3 = "#${palette.base0D}";
color4 = "#${palette.base0D}";
color5 = "#${palette.base0D}";
};
};
in
{
enable = true;
image = "${wallpaper}/share/wallpapers/nixos-wallpaper.png";
polarity = "dark";
fonts =
let
font = {
package = pkgs.nerd-fonts.caskaydia-cove;
name = "CaskaydiaCove Nerd Font";
};
in
{
monospace = font;
serif = font;
sansSerif = font;
emoji = font;
};
base16Scheme.palette = palette;
};
}
+7
View File
@@ -4,4 +4,11 @@
./hardware-configuration.nix ./hardware-configuration.nix
../common/configuration.nix ../common/configuration.nix
]; ];
boot.loader.grub = {
enable = true;
efiSupport = true;
device = "nodev";
useOSProber = true;
};
} }