mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-22 08:09:11 -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
|
build.log
|
||||||
error.log
|
error.log
|
||||||
.box
|
.box
|
||||||
|
# sops
|
||||||
|
**/*.tmp.*
|
|
@ -1,4 +1,9 @@
|
||||||
{ pkgs, inputs, stable, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
stable,
|
||||||
|
...
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
inputs.stylix.nixosModules.stylix
|
inputs.stylix.nixosModules.stylix
|
||||||
|
@ -10,6 +15,9 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
image = ./wallpaper.jpg;
|
image = ./wallpaper.jpg;
|
||||||
targets = {
|
targets = {
|
||||||
|
chromium = {
|
||||||
|
enable = false;
|
||||||
|
};
|
||||||
spicetify = {
|
spicetify = {
|
||||||
enable = false;
|
enable = false;
|
||||||
};
|
};
|
||||||
|
@ -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";
|
||||||
|
|
|
@ -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
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
firefox-devedition
|
firefox-devedition
|
||||||
|
|
Loading…
Add table
Reference in a new issue