updates
This commit is contained in:
parent
fe4380c766
commit
2bf9449a19
7 changed files with 42 additions and 14 deletions
|
|
@ -6,7 +6,6 @@
|
||||||
adwaita-icon-theme
|
adwaita-icon-theme
|
||||||
gnome-themes-extra
|
gnome-themes-extra
|
||||||
librewolf
|
librewolf
|
||||||
discord
|
|
||||||
qt5.qtwayland
|
qt5.qtwayland
|
||||||
qt6.qmake
|
qt6.qmake
|
||||||
qt6.qtwayland
|
qt6.qtwayland
|
||||||
|
|
|
||||||
|
|
@ -167,6 +167,7 @@
|
||||||
modules = [
|
modules = [
|
||||||
# > Our main home-manager configuration file <
|
# > Our main home-manager configuration file <
|
||||||
./home-manager/machines/candlekeep.nix
|
./home-manager/machines/candlekeep.nix
|
||||||
|
inputs.nixcord.homeManagerModules.nixcord
|
||||||
inputs.stylix.homeManagerModules.stylix
|
inputs.stylix.homeManagerModules.stylix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
@ -181,6 +182,7 @@
|
||||||
modules = [
|
modules = [
|
||||||
# > Our main home-manager configuration file <
|
# > Our main home-manager configuration file <
|
||||||
./home-manager/machines/grymforge.nix
|
./home-manager/machines/grymforge.nix
|
||||||
|
inputs.nixcord.homeManagerModules.nixcord
|
||||||
inputs.stylix.homeManagerModules.stylix
|
inputs.stylix.homeManagerModules.stylix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@
|
||||||
./zen.nix
|
./zen.nix
|
||||||
./xdg.nix
|
./xdg.nix
|
||||||
./mime.nix
|
./mime.nix
|
||||||
|
./nixcord.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
fonts.fontconfig.enable = true;
|
fonts.fontconfig.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,15 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./discord
|
|
||||||
./zathura.nix
|
./zathura.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.discord = {
|
# programs.discord = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
wrapDiscord = true;
|
# wrapDiscord = true;
|
||||||
};
|
# };
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
betterdiscordctl # A utility for managing BetterDiscord, enhancing features and customization in the Discord desktop client.
|
|
||||||
element-desktop # A feature-rich client for Matrix.org
|
element-desktop # A feature-rich client for Matrix.org
|
||||||
gimp # GNU Image Manipulation Program, a powerful and open-source raster graphics editor for tasks like photo editing and graphic design.
|
gimp # GNU Image Manipulation Program, a powerful and open-source raster graphics editor for tasks like photo editing and graphic design.
|
||||||
gparted # Gnome Partition Editor, a graphical partition manager for creating, resizing, and managing disk partitions.
|
gparted # Gnome Partition Editor, a graphical partition manager for creating, resizing, and managing disk partitions.
|
||||||
|
|
@ -29,5 +27,6 @@
|
||||||
vlc
|
vlc
|
||||||
zotero
|
zotero
|
||||||
feishin
|
feishin
|
||||||
|
picard
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
26
home-manager/modules/nixcord.nix
Normal file
26
home-manager/modules/nixcord.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
# ...
|
||||||
|
programs.nixcord = {
|
||||||
|
enable = true;
|
||||||
|
# quickCss = "some CSS";
|
||||||
|
config = {
|
||||||
|
# useQuickCss = true;
|
||||||
|
themeLinks = [
|
||||||
|
"https://clearvision.github.io/ClearVision-v6/main.css"
|
||||||
|
];
|
||||||
|
frameless = true; # set some Vencord options
|
||||||
|
plugins = {
|
||||||
|
hideAttachments.enable = true;
|
||||||
|
ignoreActivities = {
|
||||||
|
enable = true;
|
||||||
|
ignorePlaying = true;
|
||||||
|
ignoreWatching = true;
|
||||||
|
# ignoredActivities = [ "someActivity" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
extraConfig = {
|
||||||
|
};
|
||||||
|
};
|
||||||
|
# ...
|
||||||
|
}
|
||||||
|
|
@ -51,13 +51,13 @@
|
||||||
};
|
};
|
||||||
"onedev.local" = {
|
"onedev.local" = {
|
||||||
hostname = "git.local.gwg313.xyz";
|
hostname = "git.local.gwg313.xyz";
|
||||||
user = "gwg313";
|
user = "git";
|
||||||
identityFile = "/home/gwg313/.ssh/onedev/id_ed25519";
|
identityFile = "/home/gwg313/.ssh/onedev/id_ed25519";
|
||||||
port = 2222;
|
port = 2222;
|
||||||
};
|
};
|
||||||
"onedev" = {
|
"onedev" = {
|
||||||
hostname = "git.gwg313.xyz";
|
hostname = "git.gwg313.xyz";
|
||||||
user = "gwg313";
|
user = "git";
|
||||||
identityFile = "/home/gwg313/.ssh/onedev/id_ed25519";
|
identityFile = "/home/gwg313/.ssh/onedev/id_ed25519";
|
||||||
port = 2222;
|
port = 2222;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,10 @@ let
|
||||||
plugins-repo = pkgs.fetchFromGitHub {
|
plugins-repo = pkgs.fetchFromGitHub {
|
||||||
owner = "yazi-rs";
|
owner = "yazi-rs";
|
||||||
repo = "plugins";
|
repo = "plugins";
|
||||||
rev = "02d18be03812415097e83c6a912924560e4cec6d";
|
rev = "273019910c1111a388dd20e057606016f4bd0d17";
|
||||||
hash = "sha256-1FZ8wcf2VVp6ZWY27vm1dUU1KAL32WwoYbNA/8RUAog=";
|
hash = "sha256-80mR86UWgD11XuzpVNn56fmGRkvj0af2cFaZkU8M31I=";
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
programs.yazi = {
|
programs.yazi = {
|
||||||
|
|
@ -30,8 +31,8 @@ in
|
||||||
starship = pkgs.fetchFromGitHub {
|
starship = pkgs.fetchFromGitHub {
|
||||||
owner = "Rolv-Apneseth";
|
owner = "Rolv-Apneseth";
|
||||||
repo = "starship.yazi";
|
repo = "starship.yazi";
|
||||||
rev = "af8bf6f82165b83272b6501ce7445cf2c61fbf51";
|
rev = "6c639b474aabb17f5fecce18a4c97bf90b016512";
|
||||||
sha256 = "sha256-L7MkZZqJ+t+A61ceC4Q1joLF6ytoWdgx9BwZWAGAoCA=";
|
sha256 = "sha256-bhLUziCDnF4QDCyysRn7Az35RAy8ibZIVUzoPgyEO1A=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -44,7 +45,7 @@ in
|
||||||
manager.prepend_keymap = [
|
manager.prepend_keymap = [
|
||||||
{
|
{
|
||||||
on = "T";
|
on = "T";
|
||||||
run = "plugin --sync max-preview";
|
run = "plugin sync max-preview";
|
||||||
desc = "Maximize or restore the preview pane";
|
desc = "Maximize or restore the preview pane";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue