i once again ask for my nixos files to get onto my laptop
This commit is contained in:
parent
85f5b31e40
commit
afc59676a5
11 changed files with 147 additions and 88 deletions
|
|
@ -21,6 +21,21 @@ let
|
|||
"general.autoScroll" = true;
|
||||
"general.smoothScroll" = true;
|
||||
"middlemouse.contentLoadURL" = false;
|
||||
"devtools.debugger.remote-enabled" = true;
|
||||
"devtools.chrome.enabled" = true;
|
||||
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
||||
"browser.ml.enable" = false;
|
||||
"browser.ml.chat.enabled" = false;
|
||||
"browser.ml.chat.menu" = false;
|
||||
"browser.ml.chat.page" = false;
|
||||
"browser.ml.chat.page.footerBadge" = false;
|
||||
"browser.ml.chat.page.menuBadge" = false;
|
||||
"browser.ml.linkPreview.enabled" = false;
|
||||
"browser.ml.pageAssist.enabled" = false;
|
||||
"browser.tabs.groups.smart.enabled" = false;
|
||||
"browser.tabs.groups.smart.userEnabled" = false;
|
||||
"extensions.ml.enabled" = false;
|
||||
"browser.search.visualSearch.featureGate" = false;
|
||||
# ...
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -9,4 +9,7 @@
|
|||
imports = [
|
||||
./messaging
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
fedistar
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -50,5 +50,8 @@
|
|||
video.enable = true;
|
||||
audio.enable = true;
|
||||
};
|
||||
misc = {
|
||||
obsidian.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -178,24 +178,24 @@
|
|||
color = "rgba(1a1a1aee)";
|
||||
};
|
||||
};
|
||||
plugin = {
|
||||
hyprexpo = {
|
||||
columns = 2;
|
||||
gap_size = 20;
|
||||
bg_col = "rgb(e1e1e2)";
|
||||
workspace_method = "first 1";
|
||||
enable_gesture = true;
|
||||
gesture_distance = 300;
|
||||
gesture_positive = true;
|
||||
gesture_negative = true;
|
||||
};
|
||||
hyprtrails = {
|
||||
color = "rgba(1a1a1aee)";
|
||||
};
|
||||
};
|
||||
# plugin = {
|
||||
# hyprexpo = {
|
||||
# columns = 2;
|
||||
# gap_size = 20;
|
||||
# bg_col = "rgb(e1e1e2)";
|
||||
# workspace_method = "first 1";
|
||||
# enable_gesture = true;
|
||||
# gesture_distance = 300;
|
||||
# gesture_positive = true;
|
||||
# gesture_negative = true;
|
||||
# };
|
||||
# hyprtrails = {
|
||||
# color = "rgba(1a1a1aee)";
|
||||
# };
|
||||
# };
|
||||
};
|
||||
plugins = [
|
||||
inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprtrails
|
||||
# inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprtrails
|
||||
# inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprexpo
|
||||
|
||||
];
|
||||
|
|
|
|||
|
|
@ -18,6 +18,9 @@
|
|||
walker = {
|
||||
enable = true;
|
||||
runAsService = true;
|
||||
config = {
|
||||
theme = "noctalia";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
config = lib.mkIf config.gaming.modding.enable {
|
||||
home.packages = with pkgs; [
|
||||
nexusmods-app-unfree
|
||||
limo
|
||||
r2modman
|
||||
];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -10,5 +10,6 @@
|
|||
./bitwarden.nix
|
||||
./syncthing.nix
|
||||
./secrets.nix
|
||||
./obsidian.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
20
modules/misc/obsidian.nix
Normal file
20
modules/misc/obsidian.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
options = {
|
||||
misc = {
|
||||
obsidian.enable = lib.mkEnableOption "enable obsidian";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf config.misc.obsidian.enable {
|
||||
home.packages = with pkgs; [
|
||||
obsidian
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue