Compare commits
No commits in common. "57dabe199f13647f618520105eb92d0a2faf5bf3" and "1540b22752a40b3a9726b2bfabc5d4b5f2e7f53c" have entirely different histories.
57dabe199f
...
1540b22752
|
@ -22,7 +22,6 @@
|
||||||
impermanence.enable = true;
|
impermanence.enable = true;
|
||||||
webis.enable = true;
|
webis.enable = true;
|
||||||
};
|
};
|
||||||
programs.prismlauncher.enable = true;
|
|
||||||
services.wallpaper.enable = true;
|
services.wallpaper.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -31,19 +30,6 @@
|
||||||
stable.calibre # NOTE: breaks often in unstable
|
stable.calibre # NOTE: breaks often in unstable
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager.users.moritz.services.kanshi.settings = [
|
|
||||||
{
|
|
||||||
profile.name = "default";
|
|
||||||
profile.outputs = [
|
|
||||||
{
|
|
||||||
adaptiveSync = true;
|
|
||||||
criteria = "*";
|
|
||||||
scale = 1.2;
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
keyboard.qmk.enable = true;
|
keyboard.qmk.enable = true;
|
||||||
nvidia = {
|
nvidia = {
|
||||||
|
|
|
@ -45,17 +45,15 @@ in
|
||||||
".cache/nvim/luac"
|
".cache/nvim/luac"
|
||||||
".cat_installer" # eduroam
|
".cat_installer" # eduroam
|
||||||
".config/JetBrains"
|
".config/JetBrains"
|
||||||
".config/Mullvad VPN/"
|
|
||||||
".config/Nextcloud"
|
".config/Nextcloud"
|
||||||
".config/Signal/"
|
".config/Signal/"
|
||||||
|
".config/Mullvad VPN/"
|
||||||
".config/calibre"
|
".config/calibre"
|
||||||
".config/github-copilot"
|
".config/github-copilot"
|
||||||
".config/kdeconnect"
|
".config/kdeconnect"
|
||||||
".config/keepassxc"
|
".config/keepassxc"
|
||||||
".java/.userPrefs/jetbrains/"
|
".java/.userPrefs/jetbrains/"
|
||||||
".local/share/JetBrains"
|
".local/share/JetBrains"
|
||||||
".local/share/PrismLauncher/"
|
|
||||||
".local/share/Steam/"
|
|
||||||
".local/share/direnv"
|
".local/share/direnv"
|
||||||
".local/share/nvim"
|
".local/share/nvim"
|
||||||
".local/share/zoxide"
|
".local/share/zoxide"
|
||||||
|
|
|
@ -11,7 +11,6 @@ in
|
||||||
options.my.programs.kitty.enable = mkEnableOption "kitty";
|
options.my.programs.kitty.enable = mkEnableOption "kitty";
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
my.terminal.package = config.home-manager.users.moritz.programs.kitty.package;
|
|
||||||
my.shell.aliases.ssh = "TERM=xterm-256color command ssh";
|
my.shell.aliases.ssh = "TERM=xterm-256color command ssh";
|
||||||
home-manager.users.moritz = {
|
home-manager.users.moritz = {
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
|
|
|
@ -58,34 +58,6 @@ in
|
||||||
plugins.helpview.enable = true;
|
plugins.helpview.enable = true;
|
||||||
performance.combinePlugins.standalonePlugins = [ "helpview.nvim" ];
|
performance.combinePlugins.standalonePlugins = [ "helpview.nvim" ];
|
||||||
}
|
}
|
||||||
{
|
|
||||||
plugins.obsidian.enable = true;
|
|
||||||
plugins.obsidian.settings = {
|
|
||||||
dir = "~/Documents/Nextcloud/Notes/zettelkasten/";
|
|
||||||
note_id_func.__raw = ''
|
|
||||||
function(title)
|
|
||||||
if title ~= nil then
|
|
||||||
return title
|
|
||||||
else
|
|
||||||
suffix = ""
|
|
||||||
for _ = 1, 4 do
|
|
||||||
suffix = suffix .. string.char(math.random(65, 90))
|
|
||||||
end
|
|
||||||
return tostring(os.date("%Y-%m-%d")) .. "-" .. suffix
|
|
||||||
end
|
|
||||||
end
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
plugins.mini = {
|
|
||||||
enable = true;
|
|
||||||
modules = {
|
|
||||||
align = { };
|
|
||||||
};
|
|
||||||
};
|
|
||||||
performance.combinePlugins.standalonePlugins = [ "mini.nvim" ];
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
{ config
|
|
||||||
, lib
|
|
||||||
, pkgs
|
|
||||||
, ...
|
|
||||||
}:
|
|
||||||
|
|
||||||
with lib;
|
|
||||||
let
|
|
||||||
cfg = config.my.programs.prismlauncher;
|
|
||||||
|
|
||||||
prismlauncher = pkgs.runCommandNoCC "prismlauncher"
|
|
||||||
{
|
|
||||||
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
||||||
} ''
|
|
||||||
makeWrapper ${lib.getExe pkgs.prismlauncher} $out/bin/prismlauncher \
|
|
||||||
--set QT_STYLE_OVERRIDE "" \
|
|
||||||
--set QT_QPA_PLATFORMTHEME "gtk3"
|
|
||||||
'';
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.my.programs.prismlauncher.enable = mkEnableOption "prismlauncher";
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
users.users.moritz.packages = [ prismlauncher ];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue