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 = [
|
||||
# ./audacity.nix
|
||||
# ./bottles.nix
|
||||
# ./cinny.nix
|
||||
# ./cursor.nix
|
||||
# ./gimp.nix
|
||||
# ./guitarix.nix
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
}: {
|
||||
home.packages = lib.optionals (device.is "ryu") [
|
||||
pkgs.fluffychat
|
||||
pkgs.fractal
|
||||
# pkgs.quaternion
|
||||
];
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
programs.zen-browser.darwinDefaultsId = "org.mozilla.firefox.plist";
|
||||
programs.zen-browser = {
|
||||
enable = true;
|
||||
profiles.default = {
|
||||
profiles.default = rec {
|
||||
containersForce = true;
|
||||
containers = {
|
||||
Personal = {
|
||||
@@ -65,6 +65,46 @@
|
||||
sponsorblock
|
||||
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];
|
||||
policies = {
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
{...}: {
|
||||
config = {
|
||||
nix.settings = {
|
||||
trusted-substituters = [
|
||||
|
||||
@@ -289,7 +289,7 @@ in {
|
||||
"core.keybinds" = {
|
||||
config = {
|
||||
default_keybinds = true;
|
||||
neorg_leader = "<C-m>";
|
||||
neorg_leader = "<C-i>";
|
||||
};
|
||||
};
|
||||
"core.integrations.treesitter" = {
|
||||
|
||||
@@ -42,8 +42,8 @@
|
||||
};
|
||||
};
|
||||
in [
|
||||
inputs.nno.overlays.default
|
||||
inputs.nixvim.overlays.default
|
||||
vimPlugins
|
||||
inputs.nno.overlays.default
|
||||
tree-sitter-grammars
|
||||
vimPlugins
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user