From 74d222ea593656bc8a4626c8335ecc10b14ea874 Mon Sep 17 00:00:00 2001 From: gabrielkheisa Date: Wed, 13 Nov 2024 21:56:36 +0700 Subject: [PATCH] update --- flake.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 143e869..e201d85 100644 --- a/flake.nix +++ b/flake.nix @@ -1,7 +1,7 @@ # flake.nix { - description = "Portable Ubuntu setup with XFCE, XRDP, and swap"; + description = "Portable Ubuntu setup with XFCE, XRDP, Chromium, and swap"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs"; @@ -13,12 +13,13 @@ system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; }; in { - # Define the dev shell environment with XFCE, XRDP, and utilities + # Define the dev shell environment with XFCE, XRDP, Chromium, and utilities devShell.${system} = pkgs.mkShell { buildInputs = [ pkgs.xfce pkgs.xfce.xfce4-terminal pkgs.xrdp + pkgs.chromium # Added Chromium here ]; }; @@ -31,6 +32,7 @@ programs.bash.enable = true; programs.xfce.enable = true; services.xrdp.enable = true; + programs.chromium.enable = true; # Ensure Chromium is enabled for the user }; # System-level configuration for creating swap, user, etc.