add flatpak (cloudredirect)

This commit is contained in:
2026-08-03 03:08:05 +02:00
parent 04e42db270
commit 63070a33c4
7 changed files with 64 additions and 20 deletions
+24
View File
@@ -0,0 +1,24 @@
{ nix-flatpak, ... }:
{
imports = [
nix-flatpak.nixosModules.nix-flatpak
];
services.flatpak.remotes = [
{
name = "cloudredirect";
location = "https://raw.githubusercontent.com/Selectively11/CloudRedirect/master/flatpak/cloudredirect.flatpakrepo";
}
{
name = "flathub";
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
}
];
services.flatpak.packages = [
{
appId = "org.cloudredirect.CloudRedirect";
origin = "cloudredirect";
}
];
}
-5
View File
@@ -55,11 +55,6 @@
action = ''"_d'';
key = "d";
}
{
mode = [ "v" ];
action = ''"_p'';
key = "p";
}
{
mode = [ "n" ];
action = "<cmd>Telescope live_grep<CR>";
+14 -12
View File
@@ -5,19 +5,21 @@
nixd = {
enable = true;
config = {
nixd = {
nixpkgs = {
expr = ''import (builtins.getFlake "/home/user/nix-config").inputs.nixpkgs { }'';
};
formatting = {
command = "nixfmt";
};
options = {
nixos = {
expr = ''(builtins.getFlake "/home/user/nix-config").nixosConfigurations.desktop.options'';
settings = {
nixd = {
nixpkgs = {
expr = ''import (builtins.getFlake "/home/user/nix-config").inputs.nixpkgs { }'';
};
home_manager = {
expr = ''(builtins.getFlake "/home/user/nix-config").nixosConfigurations.desktop.options.home-manager.users.type.getSubOptions []'';
formatting = {
command = [ "nixfmt" ];
};
options = {
nixos = {
expr = ''(builtins.getFlake "/home/user/nix-config").nixosConfigurations.desktop.options'';
};
home_manager = {
expr = ''(builtins.getFlake "/home/user/nix-config").nixosConfigurations.desktop.options.home-manager.users.type.getSubOptions []'';
};
};
};
};
+2 -1
View File
@@ -12,7 +12,7 @@
];
programs.nixvim = {
enable = true;
enable = false;
defaultEditor = true;
clipboard.register = "unnamedplus";
@@ -131,6 +131,7 @@
};
};
};
colorizer.enable = true;
};
};