This commit is contained in:
sadan 2025-02-04 01:51:05 -05:00
parent 3496c35fe5
commit 39b4dd66ab
No known key found for this signature in database
4 changed files with 36 additions and 25 deletions

2
.gitignore vendored
View file

@ -1,3 +1,5 @@
build.log build.log
error.log error.log
.box .box
# sops
**/*.tmp.*

View file

@ -1,4 +1,9 @@
{ pkgs, inputs, stable, ... }: {
pkgs,
inputs,
stable,
...
}:
{ {
imports = [ imports = [
inputs.stylix.nixosModules.stylix inputs.stylix.nixosModules.stylix
@ -10,9 +15,12 @@
enable = true; enable = true;
image = ./wallpaper.jpg; image = ./wallpaper.jpg;
targets = { targets = {
spicetify = { chromium = {
enable = false; enable = false;
}; };
spicetify = {
enable = false;
};
}; };
base16Scheme = { base16Scheme = {
base00 = "#1A1B26"; base00 = "#1A1B26";
@ -37,14 +45,14 @@
package = pkgs.twemoji-color-font; package = pkgs.twemoji-color-font;
name = "Twitter Color Emoji"; name = "Twitter Color Emoji";
}; };
sansSerif = { # sansSerif = {
package = stable.nerdfonts; # package = stable.nerdfonts;
name = "ComicShannsMono Nerd Font Mono"; # name = "ComicShannsMono Nerd Font Mono";
}; # };
serif = { # serif = {
package = stable.nerdfonts; # package = stable.nerdfonts;
name = "ComicShannsMono Nerd Font Mono"; # name = "ComicShannsMono Nerd Font Mono";
}; # };
monospace = { monospace = {
package = stable.nerdfonts; package = stable.nerdfonts;
name = "ComicShannsMono Nerd Font Mono"; name = "ComicShannsMono Nerd Font Mono";

View file

@ -9,7 +9,7 @@ in
home = { home = {
packages = with pkgs; [ packages = with pkgs; [
# pinned.vscode # pinned.vscode
(unstable.vscode.fhsWithPackages ( (pinned.vscode.fhsWithPackages (
pkgs: with pkgs; [ pkgs: with pkgs; [
powershell powershell
] ]

View file

@ -1,12 +1,13 @@
{pkgs, ...}: { { pkgs, ... }:
home = { {
packages = with pkgs; [ home = {
firefox-devedition packages = with pkgs; [
google-chrome firefox-devedition
thunderbird google-chrome
jellyfin-web thunderbird
jellyfin-media-player jellyfin-web
vlc jellyfin-media-player
]; vlc
}; ];
} };
}