1
0
Fork 0

Re-add Flatpaks and muted boot messages to Shura

This commit is contained in:
Aires 2024-06-24 15:37:10 -04:00
parent e4774c2fdd
commit 6f36c3f6be
3 changed files with 17 additions and 2 deletions

View file

@ -12,7 +12,7 @@
aux.system = { aux.system = {
apps.tmux.enable = true; apps.tmux.enable = true;
bootloader.enable = false; # Bootloader configured in hardware-configuration.nix bootloader.enable = false; # Bootloader configured in hardware-configuration.nix
packages = with pkgs; [ packages = with pkgs; [
libraspberrypi libraspberrypi
raspberrypifw raspberrypifw

View file

@ -74,7 +74,19 @@ in
user = config.users.users.aires.name; user = config.users.users.aires.name;
}; };
ui = { ui = {
flatpak.enable = true; flatpak = {
# Enable Flatpak support.
enable = true;
# Define Flatpak packages to install.
packages = [
"com.github.tchx84.Flatseal"
"com.github.wwmm.easyeffects"
"md.obsidian.Obsidian"
"net.waterfox.waterfox"
"org.keepassxc.KeePassXC"
];
};
desktops.gnome.enable = true; desktops.gnome.enable = true;
}; };
users = { users = {

View file

@ -42,6 +42,9 @@ in
"quiet" "quiet"
"splash" "splash"
]; ];
# Increase minimum log level. This removes ACPI errors from the boot screen.
consoleLogLevel = 1;
}; };
# Manage fonts # Manage fonts