add flatpak (cloudredirect)
This commit is contained in:
@@ -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";
|
||||
}
|
||||
];
|
||||
}
|
||||
@@ -55,11 +55,6 @@
|
||||
action = ''"_d'';
|
||||
key = "d";
|
||||
}
|
||||
{
|
||||
mode = [ "v" ];
|
||||
action = ''"_p'';
|
||||
key = "p";
|
||||
}
|
||||
{
|
||||
mode = [ "n" ];
|
||||
action = "<cmd>Telescope live_grep<CR>";
|
||||
|
||||
@@ -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 []'';
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
];
|
||||
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
defaultEditor = true;
|
||||
|
||||
clipboard.register = "unnamedplus";
|
||||
@@ -131,6 +131,7 @@
|
||||
};
|
||||
};
|
||||
};
|
||||
colorizer.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user