Re-add Flatpaks and muted boot messages to Shura
This commit is contained in:
parent
e4774c2fdd
commit
6f36c3f6be
|
@ -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
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue