install flatpak
This commit is contained in:
parent
1823d2a998
commit
29b349684e
4 changed files with 9 additions and 1 deletions
|
@ -13,12 +13,14 @@
|
||||||
".config/spotify-tui"
|
".config/spotify-tui"
|
||||||
".gnupg"
|
".gnupg"
|
||||||
".local/share/atuin"
|
".local/share/atuin"
|
||||||
|
".local/share/flatpak"
|
||||||
".local/share/keyrings"
|
".local/share/keyrings"
|
||||||
".local/share/nix"
|
".local/share/nix"
|
||||||
".local/share/zsh"
|
".local/share/zsh"
|
||||||
".mozilla"
|
".mozilla"
|
||||||
".nixos-config"
|
".nixos-config"
|
||||||
".ssh"
|
".ssh"
|
||||||
|
".var"
|
||||||
|
|
||||||
"Documents"
|
"Documents"
|
||||||
"Downloads"
|
"Downloads"
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
|
|
||||||
fonts.fonts = with pkgs; [
|
fonts = {
|
||||||
|
enableDefaultFonts = true;
|
||||||
|
fontDir.enable = true;
|
||||||
|
fonts = with pkgs; [
|
||||||
cantarell-fonts
|
cantarell-fonts
|
||||||
liberation_ttf
|
liberation_ttf
|
||||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||||
|
@ -8,6 +11,7 @@
|
||||||
noto-fonts-cjk
|
noto-fonts-cjk
|
||||||
noto-fonts-emoji
|
noto-fonts-emoji
|
||||||
];
|
];
|
||||||
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
git.enable = true;
|
git.enable = true;
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
"/var/cache/apparmor"
|
"/var/cache/apparmor"
|
||||||
"/var/lib/bluetooth"
|
"/var/lib/bluetooth"
|
||||||
"/var/lib/docker"
|
"/var/lib/docker"
|
||||||
|
"/var/lib/flatpak"
|
||||||
"/var/lib/iwd"
|
"/var/lib/iwd"
|
||||||
"/var/lib/libvirt"
|
"/var/lib/libvirt"
|
||||||
"/var/lib/NetworkManager"
|
"/var/lib/NetworkManager"
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
apparmor = "enabled";
|
apparmor = "enabled";
|
||||||
packages = [ pkgs.gcr pkgs.gcr_4 ];
|
packages = [ pkgs.gcr pkgs.gcr_4 ];
|
||||||
};
|
};
|
||||||
|
flatpak.enable = true;
|
||||||
fstrim.enable = true;
|
fstrim.enable = true;
|
||||||
fwupd.enable = true;
|
fwupd.enable = true;
|
||||||
gvfs.enable = true;
|
gvfs.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue