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"
|
||||
".gnupg"
|
||||
".local/share/atuin"
|
||||
".local/share/flatpak"
|
||||
".local/share/keyrings"
|
||||
".local/share/nix"
|
||||
".local/share/zsh"
|
||||
".mozilla"
|
||||
".nixos-config"
|
||||
".ssh"
|
||||
".var"
|
||||
|
||||
"Documents"
|
||||
"Downloads"
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
{ pkgs, ... }: {
|
||||
|
||||
fonts.fonts = with pkgs; [
|
||||
fonts = {
|
||||
enableDefaultFonts = true;
|
||||
fontDir.enable = true;
|
||||
fonts = with pkgs; [
|
||||
cantarell-fonts
|
||||
liberation_ttf
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
|
@ -8,6 +11,7 @@
|
|||
noto-fonts-cjk
|
||||
noto-fonts-emoji
|
||||
];
|
||||
};
|
||||
|
||||
programs = {
|
||||
git.enable = true;
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"/var/cache/apparmor"
|
||||
"/var/lib/bluetooth"
|
||||
"/var/lib/docker"
|
||||
"/var/lib/flatpak"
|
||||
"/var/lib/iwd"
|
||||
"/var/lib/libvirt"
|
||||
"/var/lib/NetworkManager"
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
apparmor = "enabled";
|
||||
packages = [ pkgs.gcr pkgs.gcr_4 ];
|
||||
};
|
||||
flatpak.enable = true;
|
||||
fstrim.enable = true;
|
||||
fwupd.enable = true;
|
||||
gvfs.enable = true;
|
||||
|
|
Loading…
Reference in a new issue