This commit is contained in:
mjallen18
2025-08-22 21:11:13 -05:00
parent 999fbbf022
commit d6e7be7db1
12 changed files with 307 additions and 294 deletions

View File

@@ -5,7 +5,10 @@
home-manager.users.matt = import ./home/default.nix;
${namespace} = {
desktop = {
hyprland.enable = true;
hyprland = {
enable = true;
wallpaperSource = "nasa";
};
gnome.enable = lib.mkForce false;
};
};

View File

@@ -1,8 +1,5 @@
{ pkgs, lib, ... }:
let
theme = import (lib.snowfall.fs.get-file "modules/home/desktop/theme/nord.nix");
fontName = "JetBrainsMono NFM";
fontPackage = pkgs.nerd-fonts.jetbrains-mono;
displayLeft = {
input = "DP-1";
resolution = "3840x2160";
@@ -15,9 +12,8 @@ let
};
in
{
mjallen = {
desktop.hyprland = {
programs.hyprland = {
enable = true;
primaryDisplay = "DP-1";
@@ -53,18 +49,19 @@ in
browser = pkgs.firefox;
};
};
programs = {
btop.enable = true;
kitty = {
enable = true;
font = {
name = fontName;
package = fontPackage;
name = "JetBrainsMono NFM";
package = pkgs.nerd-fonts.jetbrains-mono;
};
};
mako = {
enable = true;
fontName = fontName;
fontName = "JetBrainsMono NFM";
};
nwg-dock.enable = true;
nwg-drawer.enable = true;
@@ -109,14 +106,14 @@ in
extraModulesStyle = ''
#custom-lights {
color: ${theme.frost.nord8};
background-color: ${theme.polarNight.nord0};
${theme.defaultOpacity}
${theme.borderLeft}
color: #88c0d0;
background-color: #2e3440;
opacity: 0.8;
border-left: 5px solid #88c0d0;
}
#custom-lights:hover {
background: ${theme.polarNight.nord3};
background: #4c566a;
}
'';
};