mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-21 07:38:54 -05:00
things
This commit is contained in:
parent
3496c35fe5
commit
39b4dd66ab
4 changed files with 36 additions and 25 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,5 @@
|
|||
build.log
|
||||
error.log
|
||||
.box
|
||||
# sops
|
||||
**/*.tmp.*
|
|
@ -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";
|
||||
|
|
|
@ -9,7 +9,7 @@ in
|
|||
home = {
|
||||
packages = with pkgs; [
|
||||
# pinned.vscode
|
||||
(unstable.vscode.fhsWithPackages (
|
||||
(pinned.vscode.fhsWithPackages (
|
||||
pkgs: with pkgs; [
|
||||
powershell
|
||||
]
|
||||
|
|
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue