mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
fix: remove flatpak
This commit is contained in:
parent
0df783bf41
commit
b6f92728fb
6 changed files with 5 additions and 48 deletions
17
flake.lock
generated
17
flake.lock
generated
|
|
@ -988,22 +988,6 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nix-flatpak": {
|
||||
"locked": {
|
||||
"lastModified": 1739444422,
|
||||
"narHash": "sha256-iAVVHi7X3kWORftY+LVbRiStRnQEob2TULWyjMS6dWg=",
|
||||
"owner": "gmodena",
|
||||
"repo": "nix-flatpak",
|
||||
"rev": "5e54c3ca05a7c7d968ae1ddeabe01d2a9bc1e177",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "gmodena",
|
||||
"ref": "latest",
|
||||
"repo": "nix-flatpak",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nix-gaming": {
|
||||
"inputs": {
|
||||
"flake-parts": [
|
||||
|
|
@ -1404,7 +1388,6 @@
|
|||
"neorg-overlay": "neorg-overlay",
|
||||
"nh": "nh",
|
||||
"niri": "niri",
|
||||
"nix-flatpak": "nix-flatpak",
|
||||
"nix-gaming": "nix-gaming",
|
||||
"nix-index-database": "nix-index-database",
|
||||
"nix-std": "nix-std_2",
|
||||
|
|
|
|||
|
|
@ -15,9 +15,6 @@
|
|||
nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
nix-flatpak = {
|
||||
url = "github:gmodena/nix-flatpak/?ref=latest";
|
||||
};
|
||||
rust = {
|
||||
url = "github:arcnmx/nixexprs-rust";
|
||||
inputs = {
|
||||
|
|
|
|||
|
|
@ -50,7 +50,6 @@ in {
|
|||
package = pkgs.gamescope;
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
protonplus
|
||||
gamescope-wsi
|
||||
mangohud
|
||||
vkbasalt
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
_: {
|
||||
home-manager.sharedModules = [
|
||||
({config, ...}: {
|
||||
xdg.systemDirs.data = [
|
||||
"/var/lib/flatpak/exports/share"
|
||||
"/home/${config.home.username}/.local/share/flatpak/exports/share/"
|
||||
];
|
||||
})
|
||||
];
|
||||
services.flatpak = {
|
||||
enable = true;
|
||||
update.auto = {
|
||||
enable = true;
|
||||
onCalendar = "weekly";
|
||||
};
|
||||
remotes = [
|
||||
{
|
||||
name = "flathub";
|
||||
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -1,6 +1,9 @@
|
|||
_: {
|
||||
{pkgs, ...}: {
|
||||
services = {
|
||||
gvfs.enable = true;
|
||||
gvfs = {
|
||||
enable = true;
|
||||
package = pkgs.gvfs;
|
||||
};
|
||||
udisks2.enable = true;
|
||||
devmon.enable = true;
|
||||
};
|
||||
|
|
|
|||
2
tree.nix
2
tree.nix
|
|
@ -90,7 +90,6 @@
|
|||
clipboard-sync.nixosModules.default
|
||||
niri.nixosModules.niri
|
||||
nixos-cli.nixosModules.nixos-cli
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
stylix.nixosModules.stylix
|
||||
microvm.nixosModules.host
|
||||
];
|
||||
|
|
@ -113,7 +112,6 @@
|
|||
sops-nix.homeManagerModules.sops
|
||||
chaotic.homeManagerModules.default
|
||||
spicetify-nix.homeManagerModules.spicetify
|
||||
nix-flatpak.homeManagerModules.nix-flatpak
|
||||
stylix.homeModules.stylix
|
||||
]
|
||||
++ (with (import (inputs.arcexprs + "/modules")).home-manager; [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue