Compare commits
No commits in common. "79af1976efd2509123d6bca132bc46e3cb13375f" and "9b662fc78030884a1dc19983b92eb96947dac8d7" have entirely different histories.
79af1976ef
...
9b662fc780
16
flake.lock
16
flake.lock
|
@ -273,21 +273,6 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nix-flatpak": {
|
||||
"locked": {
|
||||
"lastModified": 1721549352,
|
||||
"narHash": "sha256-nlXJa8RSOX0kykrIYW33ukoHYq+FOSNztHLLgqKwOp8=",
|
||||
"owner": "gmodena",
|
||||
"repo": "nix-flatpak",
|
||||
"rev": "dbce39ea8664820ba9037caaf1e2fad365ed6b4b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "gmodena",
|
||||
"repo": "nix-flatpak",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nix-minecraft": {
|
||||
"inputs": {
|
||||
"flake-compat": "flake-compat_2",
|
||||
|
@ -423,7 +408,6 @@
|
|||
"crowdsec": "crowdsec",
|
||||
"home-manager": "home-manager_2",
|
||||
"impermanence": "impermanence",
|
||||
"nix-flatpak": "nix-flatpak",
|
||||
"nix-minecraft": "nix-minecraft",
|
||||
"nixpkgs": "nixpkgs_3",
|
||||
"nixpkgs-unstable": "nixpkgs-unstable"
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
|
||||
# Add any other flake you might need.
|
||||
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
|
||||
nix-flatpak.url = "github:gmodena/nix-flatpak";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, ... }@inputs:
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
{
|
||||
imports = [
|
||||
./mangohud.nix
|
||||
./runescape.nix
|
||||
];
|
||||
|
||||
home = {
|
||||
|
@ -11,6 +10,12 @@
|
|||
gamemode
|
||||
protonup-ng
|
||||
prismlauncher
|
||||
runelite
|
||||
];
|
||||
persistence."/persist/home/sajenim" = {
|
||||
directories = [
|
||||
".runelite"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,20 +0,0 @@
|
|||
{ inputs, lib, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
inputs.nix-flatpak.homeManagerModules.nix-flatpak
|
||||
];
|
||||
|
||||
services.flatpak.remotes = lib.mkOptionDefault [
|
||||
{ name = "flathub"; location = "https://dl.flathub.org/repo/flathub.flatpakrepo"; }
|
||||
{ name = "JagexLauncher"; location = "https://jagexlauncher.flatpak.mcswain.dev/JagexLauncher.flatpakrepo"; }
|
||||
];
|
||||
|
||||
services.flatpak.packages = [
|
||||
{ appId = "org.freedesktop.Platform.Compat.i386/x86_64/23.08"; origin = "flathub"; }
|
||||
{ appId = "org.freedesktop.Platform.GL32.default/x86_64/23.08"; origin = "flathub"; }
|
||||
{ appId = "com.jagex.Launcher"; origin = "JagexLauncher"; }
|
||||
{ appId = "com.jagex.Launcher.ThirdParty.RuneLite"; origin = "JagexLauncher"; }
|
||||
];
|
||||
}
|
||||
|
|
@ -17,6 +17,11 @@
|
|||
gimp
|
||||
inkscape
|
||||
krita
|
||||
# Games
|
||||
gamemode
|
||||
protonup-ng
|
||||
prismlauncher
|
||||
runelite
|
||||
# Hardware
|
||||
openrgb
|
||||
libratbag
|
||||
|
|
|
@ -32,7 +32,6 @@
|
|||
".ssh"
|
||||
|
||||
".local/bin"
|
||||
".local/share/flatpak"
|
||||
".local/share/nix"
|
||||
".local/share/direnv"
|
||||
];
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
"/var/log"
|
||||
"/var/lib/bluetooth"
|
||||
"/var/lib/docker"
|
||||
"/var/lib/flatpak"
|
||||
"/var/lib/nixos"
|
||||
"/var/lib/systemd/coredump"
|
||||
"/etc/NetworkManager/system-connections"
|
||||
|
|
|
@ -8,8 +8,5 @@
|
|||
extraPortals = [ pkgs.xdg-desktop-portal-wlr ];
|
||||
};
|
||||
|
||||
services.flatpak = {
|
||||
enable = true;
|
||||
onCalender = "weekly";
|
||||
};
|
||||
services.flatpak.enable = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue