initial flatpak module
This commit is contained in:
@ -12,6 +12,8 @@ rec {
|
|||||||
|
|
||||||
./modules/emacs.nix
|
./modules/emacs.nix
|
||||||
./modules/audio.nix
|
./modules/audio.nix
|
||||||
|
./modules/flatpak.nix
|
||||||
|
./modules/gaming.nix
|
||||||
|
|
||||||
# inputs.nixvim.homeManagerModules.nixvim
|
# inputs.nixvim.homeManagerModules.nixvim
|
||||||
];
|
];
|
||||||
@ -19,19 +21,36 @@ rec {
|
|||||||
# Config my modules
|
# Config my modules
|
||||||
modules.emacs = {
|
modules.emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
useDoom = true;
|
useDoom = true;
|
||||||
autosync = true;
|
autoSync = true;
|
||||||
|
autoUpgrade = false; # Very volatile as the upgrade fails sometimes with bleeding edge emacs
|
||||||
};
|
};
|
||||||
|
|
||||||
modules.audio = {
|
modules.audio = {
|
||||||
enable = true;
|
enable = true;
|
||||||
carla = true;
|
|
||||||
|
carla.enable = true;
|
||||||
|
bitwig.enable = false;
|
||||||
|
|
||||||
yabridge.enable = true;
|
yabridge.enable = true;
|
||||||
yabridge.autosync = true;
|
yabridge.autoSync = true;
|
||||||
bitwig.enable = true;
|
|
||||||
extraPackages = with pkgs; [ audacity vcv-rack ];
|
extraPackages = with pkgs; [ audacity vcv-rack ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
modules.flatpak = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
fontFix = true;
|
||||||
|
iconFix = true;
|
||||||
|
|
||||||
|
autoInstall = true;
|
||||||
|
autoUpdate = true;
|
||||||
|
|
||||||
|
packages = [ "discord" ];
|
||||||
|
};
|
||||||
|
|
||||||
# TODO: Email
|
# TODO: Email
|
||||||
# TODO: Run noisetorch as login script
|
# TODO: Run noisetorch as login script
|
||||||
# TODO: Gnome terminal config
|
# TODO: Gnome terminal config
|
||||||
@ -54,28 +73,6 @@ rec {
|
|||||||
# NOTE: I don't think I need this anymore as all fonts are installed through the system config but let's keep this just in case
|
# NOTE: I don't think I need this anymore as all fonts are installed through the system config but let's keep this just in case
|
||||||
fonts.fontconfig.enable = true; # Also updates the font-cache
|
fonts.fontconfig.enable = true; # Also updates the font-cache
|
||||||
|
|
||||||
# TODO: Add to flatpak module
|
|
||||||
# TODO: Update flatpak on rebuild?
|
|
||||||
# We link like this to be able to address the absolute location, also the fonts won't get copied to store
|
|
||||||
# NOTE: This path contains all the fonts because fonts.fontDir.enable is true
|
|
||||||
home.activation.linkFontDir = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
|
||||||
if [ ! -L "${home.homeDirectory}/.local/share/fonts" ]; then
|
|
||||||
ln -sf /run/current-system/sw/share/X11/fonts ${home.homeDirectory}/.local/share/fonts
|
|
||||||
fi
|
|
||||||
'';
|
|
||||||
# Also link icons
|
|
||||||
# NOTE: This path works because we have homeManager.useUserPackages = true (everything is stored in /etc/profiles/)
|
|
||||||
home.activation.linkIconDir = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
|
||||||
if [ ! -L "${home.homeDirectory}/.local/share/icons" ]; then
|
|
||||||
ln -sf /etc/profiles/per-user/christoph/share/icons ${home.homeDirectory}/.local/share/icons
|
|
||||||
fi
|
|
||||||
'';
|
|
||||||
# Allow access to linked fonts/icons
|
|
||||||
home.file.".local/share/flatpak/overrides/global".text = ''
|
|
||||||
[Context]
|
|
||||||
filesystems=/run/current-system/sw/share/X11/fonts:ro;/run/current-system/sw/share/icons:ro;/nix/store:ro
|
|
||||||
'';
|
|
||||||
|
|
||||||
# TODO: Move to gaming modules
|
# TODO: Move to gaming modules
|
||||||
home.file.".local/share/flatpak/overrides/com.valvesoftware.Steam".text = ''
|
home.file.".local/share/flatpak/overrides/com.valvesoftware.Steam".text = ''
|
||||||
[Context]
|
[Context]
|
||||||
@ -95,12 +92,6 @@ rec {
|
|||||||
in
|
in
|
||||||
formatted;
|
formatted;
|
||||||
|
|
||||||
# NOTE: Is set by flatpak.enable
|
|
||||||
# xdg.systemDirs.data = [
|
|
||||||
# "/var/lib/flatpak/exports/share"
|
|
||||||
# "${home.homeDirectory}/.local/share/flatpak/exports/share"
|
|
||||||
# ];
|
|
||||||
|
|
||||||
# TODO: Module
|
# TODO: Module
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
98
home/modules/flatpak.nix
Normal file
98
home/modules/flatpak.nix
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.modules.flatpak;
|
||||||
|
in {
|
||||||
|
imports = [ ];
|
||||||
|
|
||||||
|
options.modules.flatpak = {
|
||||||
|
enable = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Enable flatpak support";
|
||||||
|
};
|
||||||
|
|
||||||
|
fontFix = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Link fonts to ~/.local/share/fonts so flatpak apps can find them";
|
||||||
|
};
|
||||||
|
|
||||||
|
iconFix = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Link icons to ~/.local/share/icons so flatpak apps can find them";
|
||||||
|
};
|
||||||
|
|
||||||
|
packages = mkOption {
|
||||||
|
type = types.listOf types.string;
|
||||||
|
default = [ ];
|
||||||
|
description = "List of enabled flatpaks";
|
||||||
|
};
|
||||||
|
|
||||||
|
autoInstall = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Install enabled flatpaks on nixos-rebuild";
|
||||||
|
};
|
||||||
|
|
||||||
|
autoUpdate = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Update flatpak apps on nixos-rebuild";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
|
services.flatpak.enable = true;
|
||||||
|
|
||||||
|
# NOTE: Is already set by flatpak.enable in configuration.nix
|
||||||
|
# xdg.systemDirs.data = [
|
||||||
|
# "/var/lib/flatpak/exports/share"
|
||||||
|
# "${home.homeDirectory}/.local/share/flatpak/exports/share"
|
||||||
|
# ];
|
||||||
|
|
||||||
|
home.activation = (mkMerge [
|
||||||
|
(mkIf cfg.fontFix {
|
||||||
|
# We link like this to be able to address the absolute location, also the fonts won't get copied to store
|
||||||
|
# NOTE: This path contains all the fonts because fonts.fontDir.enable is true
|
||||||
|
linkFontDir = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
||||||
|
if [ ! -L "${home.homeDirectory}/.local/share/fonts" ]; then
|
||||||
|
ln -sf /run/current-system/sw/share/X11/fonts ${home.homeDirectory}/.local/share/fonts
|
||||||
|
fi
|
||||||
|
'';
|
||||||
|
})
|
||||||
|
|
||||||
|
(mkIf cfg.iconFix {
|
||||||
|
# NOTE: This path works because we have homeManager.useUserPackages = true (everything is stored in /etc/profiles/)
|
||||||
|
linkIconDir = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
||||||
|
if [ ! -L "${home.homeDirectory}/.local/share/icons" ]; then
|
||||||
|
ln -sf /etc/profiles/per-user/christoph/share/icons ${home.homeDirectory}/.local/share/icons
|
||||||
|
fi
|
||||||
|
'';
|
||||||
|
})
|
||||||
|
|
||||||
|
(mkIf cfg.autoInstall {
|
||||||
|
installFlatpak = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
||||||
|
flatpak install -y ${builtins.concatStringsSep " " cfg.packages}
|
||||||
|
'';
|
||||||
|
})
|
||||||
|
|
||||||
|
(mkIf cfg.autoUpdate {
|
||||||
|
updateFlatpak = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
||||||
|
flatpak update -y
|
||||||
|
'';
|
||||||
|
})
|
||||||
|
]);
|
||||||
|
|
||||||
|
# TODO: Add option for extra overrides and concatenate this string together
|
||||||
|
# Allow access to linked fonts/icons
|
||||||
|
home.file.".local/share/flatpak/overrides/global".text = ''
|
||||||
|
[Context]
|
||||||
|
filesystems=/run/current-system/sw/share/X11/fonts:ro;/run/current-system/sw/share/icons:ro;/nix/store:ro
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
@ -276,8 +276,7 @@
|
|||||||
|
|
||||||
acpid.enable = true;
|
acpid.enable = true;
|
||||||
dbus.enable = true;
|
dbus.enable = true;
|
||||||
flatpak.enable =
|
# flatpak.enable = true; # Not quite the nix style but useful for bottles/proprietary stuff
|
||||||
true; # Not quite the nix style but useful for bottles/proprietary stuff
|
|
||||||
fstrim.enable = true;
|
fstrim.enable = true;
|
||||||
fwupd.enable = true;
|
fwupd.enable = true;
|
||||||
locate.enable = true; # Periodically update index
|
locate.enable = true; # Periodically update index
|
||||||
|
Reference in New Issue
Block a user