mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-26 10:14:58 +08:00
comment out/remove unnecessary stuff
This commit is contained in:
parent
f0f0f7b327
commit
546fe36923
17 changed files with 156 additions and 95 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./firefox.nix
|
||||
./chromium.nix
|
||||
./qutebrowser.nix
|
||||
# ./chromium.nix
|
||||
# ./qutebrowser.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
./misc.nix
|
||||
./tex.nix
|
||||
./python.nix
|
||||
./neovide.nix
|
||||
./zed.nix
|
||||
# ./neovide.nix
|
||||
# ./zed.nix
|
||||
./nixvim
|
||||
./R.nix
|
||||
./distrobox.nix
|
||||
|
|
|
|||
|
|
@ -9,6 +9,6 @@
|
|||
./documents
|
||||
./network
|
||||
./study
|
||||
./social
|
||||
# ./social
|
||||
];
|
||||
}
|
||||
|
|
|
|||
59
home/programs/desktop/dank.nix
Normal file
59
home/programs/desktop/dank.nix
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
# copied from https://github.com/nix-community/stylix/pull/1932
|
||||
{ config, ... }:
|
||||
let
|
||||
inherit (config.lib.stylix) colors;
|
||||
colorTheme = {
|
||||
dark = with colors.withHashtag; {
|
||||
name = "Stylix generatated dark theme";
|
||||
primary = base0D;
|
||||
primaryText = base00;
|
||||
primaryContainer = base0C;
|
||||
secondary = base0E;
|
||||
surface = base01;
|
||||
surfaceText = base05;
|
||||
surfaceVariant = base02;
|
||||
surfaceVariantText = base04;
|
||||
surfaceTint = base0D;
|
||||
background = base00;
|
||||
backgroundText = base05;
|
||||
outline = base03;
|
||||
surfaceContainer = base01;
|
||||
surfaceContainerHigh = base02;
|
||||
surfaceContainerHighest = base03;
|
||||
error = base08;
|
||||
warning = base0A;
|
||||
info = base0C;
|
||||
};
|
||||
light = with colors.withHashtag; {
|
||||
name = "Stylix generatated light theme";
|
||||
primary = base0D;
|
||||
primaryText = base07;
|
||||
primaryContainer = base0C;
|
||||
secondary = base0E;
|
||||
surface = base06;
|
||||
surfaceText = base01;
|
||||
surfaceVariant = base07;
|
||||
surfaceVariantText = base02;
|
||||
surfaceTint = base0D;
|
||||
background = base07;
|
||||
backgroundText = base00;
|
||||
outline = base04;
|
||||
surfaceContainer = base06;
|
||||
surfaceContainerHigh = base05;
|
||||
surfaceContainerHighest = base04;
|
||||
error = base08;
|
||||
warning = base0A;
|
||||
info = base0C;
|
||||
};
|
||||
};
|
||||
|
||||
configDir = ".config/DankMaterialShell";
|
||||
colorThemePath = "${configDir}/stylix-colors.json";
|
||||
in
|
||||
{
|
||||
home.file."${colorThemePath}".text = builtins.toJSON colorTheme;
|
||||
home.file."${configDir}/settings.json".text = builtins.toJSON {
|
||||
currentThemeName = "custom";
|
||||
currentThemeFile = colorThemePath;
|
||||
};
|
||||
}
|
||||
|
|
@ -6,8 +6,9 @@
|
|||
./mako.nix
|
||||
./niri
|
||||
./swhkd.nix
|
||||
./scroll
|
||||
./mango
|
||||
./dank.nix
|
||||
# ./scroll
|
||||
# ./mango
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
swww
|
||||
|
|
|
|||
|
|
@ -48,10 +48,10 @@
|
|||
}) config.monitors;
|
||||
binds = with config.lib.niri.actions; {
|
||||
"Mod+Return".action = spawn "kitty";
|
||||
"Mod+Shift+Return".action = spawn [
|
||||
"ghostty"
|
||||
"--launched-from=desktop"
|
||||
];
|
||||
# "Mod+Shift+Return".action = spawn [
|
||||
# "ghostty"
|
||||
# "--launched-from=desktop"
|
||||
# ];
|
||||
"Mod+P".action = spawn [
|
||||
"sh"
|
||||
"-c"
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
{ pkgs, ... }:
|
||||
{ inputs, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./zathura.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
libreoffice
|
||||
onlyoffice-desktopeditors
|
||||
inputs.nixpkgs-stable.legacyPackages.${pkgs.system}.onlyoffice-desktopeditors
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
pspp
|
||||
# pspp
|
||||
zotero
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./kitty.nix
|
||||
./ghostty.nix
|
||||
# ./ghostty.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,5 +17,5 @@
|
|||
ANTHROPIC_AUTH_TOKEN = "$(cat ${config.age.secrets.anyrouter_token.path})";
|
||||
ANTHROPIC_BASE_URL = "https://anyrouter.top";
|
||||
};
|
||||
home.packages = with pkgs; [ qwen-code ];
|
||||
# home.packages = with pkgs; [ qwen-code ];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,25 +13,25 @@
|
|||
sd
|
||||
socat
|
||||
pandoc
|
||||
typst
|
||||
# typst
|
||||
du-dust
|
||||
killall
|
||||
htop
|
||||
gparted
|
||||
gimp3
|
||||
kdePackages.kdenlive
|
||||
tesseract # ocr
|
||||
marp-cli
|
||||
# tesseract # ocr
|
||||
# marp-cli
|
||||
appimage-run
|
||||
audiowaveform
|
||||
papers
|
||||
nom
|
||||
# audiowaveform
|
||||
# papers
|
||||
# nom
|
||||
yad
|
||||
pcmanfm
|
||||
yazi
|
||||
ydotool
|
||||
# pcmanfm
|
||||
# yazi
|
||||
# ydotool
|
||||
jq
|
||||
scrcpy
|
||||
# scrcpy
|
||||
direnv
|
||||
entr
|
||||
lutgen
|
||||
|
|
@ -43,8 +43,6 @@
|
|||
nix-init
|
||||
wl-color-picker
|
||||
(config.lib.misc.addFlags "--wayland-text-input-version=3" "cherry-studio" cherry-studio)
|
||||
gemini-cli
|
||||
qwen-code
|
||||
];
|
||||
imports = [
|
||||
./eye-candy.nix
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
{
|
||||
home.packages = with pkgs; [
|
||||
go-musicfox
|
||||
fum
|
||||
# fum
|
||||
];
|
||||
xdg.configFile."go-musicfox/go-musicfox.ini".text =
|
||||
# ini
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue