niri
This commit is contained in:
@ -17,7 +17,7 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
desktop = {
|
desktop = {
|
||||||
hyprland.enable = true;
|
niri.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
|
50
hosts/dunamis/stylix-light.nix
Normal file
50
hosts/dunamis/stylix-light.nix
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
imports = with inputs; [
|
||||||
|
stylix.nixosModules.stylix
|
||||||
|
];
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
nerd-fonts.iosevka
|
||||||
|
];
|
||||||
|
stylix = {
|
||||||
|
enable = true;
|
||||||
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/tomorrow.yaml";
|
||||||
|
polarity = "light";
|
||||||
|
cursor = {
|
||||||
|
package = pkgs.bibata-cursors;
|
||||||
|
name = "Bibata-Modern-Ice";
|
||||||
|
size = 24;
|
||||||
|
};
|
||||||
|
image = builtins.fetchurl {
|
||||||
|
url = "https://w.wallhaven.cc/full/2y/wallhaven-2y7xv6.jpg";
|
||||||
|
name = "wallhaven-2y7xv6.jpg";
|
||||||
|
sha256 = "8c2118165298ff8f25138a2fed78e5f95e2494cfbf516b20ab1ff52dbad51afe";
|
||||||
|
};
|
||||||
|
opacity.terminal = 0.9;
|
||||||
|
fonts = {
|
||||||
|
sizes = {
|
||||||
|
applications = 13;
|
||||||
|
desktop = 14;
|
||||||
|
popups = 13;
|
||||||
|
terminal = 15;
|
||||||
|
};
|
||||||
|
serif = {
|
||||||
|
package = pkgs.nerd-fonts.iosevka;
|
||||||
|
name = "Iosevka Nerd Font Propo";
|
||||||
|
};
|
||||||
|
sansSerif = config.stylix.fonts.serif;
|
||||||
|
monospace = {
|
||||||
|
package = pkgs.nerd-fonts.iosevka-term;
|
||||||
|
name = "IosevkaTerm Nerd Font Mono";
|
||||||
|
};
|
||||||
|
emoji = {
|
||||||
|
package = pkgs.noto-fonts-emoji;
|
||||||
|
name = "Noto Color Emoji";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -4,8 +4,8 @@
|
|||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = with inputs; [
|
||||||
inputs.stylix.nixosModules.stylix
|
stylix.nixosModules.stylix
|
||||||
];
|
];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
nerd-fonts.iosevka
|
nerd-fonts.iosevka
|
||||||
@ -21,7 +21,7 @@
|
|||||||
};
|
};
|
||||||
image = builtins.fetchurl {
|
image = builtins.fetchurl {
|
||||||
url = "https://w.wallhaven.cc/full/2y/wallhaven-2y7xv6.jpg";
|
url = "https://w.wallhaven.cc/full/2y/wallhaven-2y7xv6.jpg";
|
||||||
name = "wallhaven-2y7xv6";
|
name = "wallhaven-2y7xv6.jpg";
|
||||||
sha256 = "8c2118165298ff8f25138a2fed78e5f95e2494cfbf516b20ab1ff52dbad51afe";
|
sha256 = "8c2118165298ff8f25138a2fed78e5f95e2494cfbf516b20ab1ff52dbad51afe";
|
||||||
};
|
};
|
||||||
opacity.terminal = 0.9;
|
opacity.terminal = 0.9;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
./programs.nix
|
./programs.nix
|
||||||
./flatpak.nix
|
./flatpak.nix
|
||||||
];
|
];
|
||||||
desktop.hyprland.enable = true;
|
desktop.niri.enable = true;
|
||||||
home = {
|
home = {
|
||||||
stateVersion = "25.05";
|
stateVersion = "25.05";
|
||||||
sessionPath = [
|
sessionPath = [
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
desktop = {
|
desktop = {
|
||||||
hyprland.enable = true;
|
niri.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
./programs.nix
|
./programs.nix
|
||||||
./flatpak.nix
|
./flatpak.nix
|
||||||
];
|
];
|
||||||
desktop.hyprland.enable = true;
|
desktop.niri.enable = true;
|
||||||
home = {
|
home = {
|
||||||
stateVersion = "25.05";
|
stateVersion = "25.05";
|
||||||
sessionPath = [
|
sessionPath = [
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -13,6 +13,7 @@ in {
|
|||||||
mkEnableOption "enable niri desktop";
|
mkEnableOption "enable niri desktop";
|
||||||
};
|
};
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
programs.niri.enable = true;
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
brightnessctl
|
brightnessctl
|
||||||
gcr_4
|
gcr_4
|
||||||
|
Reference in New Issue
Block a user