summaryrefslogtreecommitdiff
path: root/hosts/local/fw11/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/local/fw11/configuration.nix')
-rw-r--r--hosts/local/fw11/configuration.nix27
1 files changed, 22 insertions, 5 deletions
diff --git a/hosts/local/fw11/configuration.nix b/hosts/local/fw11/configuration.nix
index b3b6b0f..bd9aa30 100644
--- a/hosts/local/fw11/configuration.nix
+++ b/hosts/local/fw11/configuration.nix
@@ -1,7 +1,21 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
-{...}: {
+{
+ inputs,
+ pkgs,
+ ...
+}: let
+ wrappers =
+ inputs.wrapper-manager.lib.build
+ {
+ inherit pkgs;
+ modules = [
+ ../../../wrappers/chromium
+ ../../../wrappers/brave
+ ];
+ };
+in {
imports = [
# Include the results of the hardware scan.
../../base.nix
@@ -12,6 +26,10 @@
# ../android.nix
];
+ environment.systemPackages = [
+ wrappers
+ ];
+
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
@@ -27,6 +45,7 @@
# Set your time zone.
time.timeZone = "Asia/Bangkok";
+ # time.timeZone = "Europe/Madrid";
# Enable CUPS to print documents.
# services.printing.enable = true;
@@ -38,9 +57,7 @@
# firmware update
services.fwupd.enable = true;
- # android
- # programs.adb.enable = true;
- # users.users.y.extraGroups = ["adbusers"];
+ services.flatpak.enable = true;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
@@ -49,5 +66,5 @@
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
- system.stateVersion = "23.05"; # Did you read the comment?
+ system.stateVersion = "24.05"; # Did you read the comment?
}