Compare commits
2 Commits
580fcac817
...
7b86a1cb21
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b86a1cb21 | |||
| 4f18892d1b |
1
home/apps/cinny.nix
Normal file
1
home/apps/cinny.nix
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{pkgs, ...}: {home.packages = [pkgs.cinny-desktop];}
|
||||||
@@ -7,6 +7,7 @@ lib.optionalAttrs device.hasGui {
|
|||||||
imports = [
|
imports = [
|
||||||
# ./audacity.nix
|
# ./audacity.nix
|
||||||
# ./bottles.nix
|
# ./bottles.nix
|
||||||
|
# ./cinny.nix
|
||||||
# ./cursor.nix
|
# ./cursor.nix
|
||||||
# ./gimp.nix
|
# ./gimp.nix
|
||||||
# ./guitarix.nix
|
# ./guitarix.nix
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
}: {
|
}: {
|
||||||
home.packages = lib.optionals (device.is "ryu") [
|
home.packages = lib.optionals (device.is "ryu") [
|
||||||
pkgs.fluffychat
|
pkgs.fluffychat
|
||||||
pkgs.fractal
|
|
||||||
# pkgs.quaternion
|
# pkgs.quaternion
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
programs.zen-browser.darwinDefaultsId = "org.mozilla.firefox.plist";
|
programs.zen-browser.darwinDefaultsId = "org.mozilla.firefox.plist";
|
||||||
programs.zen-browser = {
|
programs.zen-browser = {
|
||||||
enable = true;
|
enable = true;
|
||||||
profiles.default = {
|
profiles.default = rec {
|
||||||
containersForce = true;
|
containersForce = true;
|
||||||
containers = {
|
containers = {
|
||||||
Personal = {
|
Personal = {
|
||||||
@@ -65,6 +65,46 @@
|
|||||||
sponsorblock
|
sponsorblock
|
||||||
floccus
|
floccus
|
||||||
];
|
];
|
||||||
|
search = {
|
||||||
|
force = true;
|
||||||
|
default = "ddg";
|
||||||
|
engines = {
|
||||||
|
mynixos = {
|
||||||
|
name = "My NixOS";
|
||||||
|
urls = [
|
||||||
|
{
|
||||||
|
template = "https://mynixos.com/search?q={searchTerms}";
|
||||||
|
params = [
|
||||||
|
{
|
||||||
|
name = "query";
|
||||||
|
value = "searchTerms";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||||
|
definedAliases = ["@nx"]; # Keep in mind that aliases defined here only work if they start with "@"
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
pins = {
|
||||||
|
dashboard = {
|
||||||
|
id = "d163f090-67b7-47d2-8f76-7d638b9f742b";
|
||||||
|
workspace = spaces.Personal.id;
|
||||||
|
url = "https://dashboard.darksailor.dev";
|
||||||
|
isEssential = true;
|
||||||
|
position = 101;
|
||||||
|
};
|
||||||
|
github = {
|
||||||
|
id = "db2f3e36-9279-4b8d-8b5d-52a90f34ea0d";
|
||||||
|
workspace = spaces.Personal.id;
|
||||||
|
url = "https://github.com";
|
||||||
|
isEssential = true;
|
||||||
|
position = 102;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
pinsForce = true;
|
||||||
};
|
};
|
||||||
nativeMessagingHosts = [pkgs.tridactyl-native];
|
nativeMessagingHosts = [pkgs.tridactyl-native];
|
||||||
policies = {
|
policies = {
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
{
|
{...}: {
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
config = {
|
config = {
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
trusted-substituters = [
|
trusted-substituters = [
|
||||||
|
|||||||
@@ -289,7 +289,7 @@ in {
|
|||||||
"core.keybinds" = {
|
"core.keybinds" = {
|
||||||
config = {
|
config = {
|
||||||
default_keybinds = true;
|
default_keybinds = true;
|
||||||
neorg_leader = "<C-m>";
|
neorg_leader = "<C-i>";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"core.integrations.treesitter" = {
|
"core.integrations.treesitter" = {
|
||||||
|
|||||||
@@ -42,8 +42,8 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
in [
|
in [
|
||||||
inputs.nno.overlays.default
|
|
||||||
inputs.nixvim.overlays.default
|
inputs.nixvim.overlays.default
|
||||||
vimPlugins
|
inputs.nno.overlays.default
|
||||||
tree-sitter-grammars
|
tree-sitter-grammars
|
||||||
|
vimPlugins
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user