awkawb aa201c643f Refactored and updated
- Replaced chromium with ungoogled-chromium
- Replaced lxqt with openbox
2025-08-23 09:49:18 -04:00

39 lines
669 B
Nix

{ modulesPath, pkgs, ... }:
let
invoiceninja-desktop = pkgs.callPackage ../package.nix { };
in {
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
system.stateVersion = "24.11";
networking.firewall.enable = false;
nixpkgs.config.allowUnfree = true;
services = {
resolved.enable = true;
xserver = {
enable = true;
displayManager.lightdm.enable = true;
windowManager.openbox.enable = true;
};
};
users.users.test = {
isNormalUser = true;
extraGroups = [ "wheel" ];
initialPassword = "test";
};
environment.systemPackages = [
pkgs.ungoogled-chromium
invoiceninja-desktop
];
}