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
error.log
.box
# sops
**/*.tmp.*

View file

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

View file

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

View file

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