Compare commits

..

No commits in common. "f5bff2f354ddebd8938bc1079a6e20a265141f05" and "a66a3015cd405084d162b82f522d8fa85a9c1551" have entirely different histories.

2 changed files with 21 additions and 4 deletions

View file

@ -38,7 +38,6 @@
}) })
./packages/default.nix ./packages/default.nix
./hosts/scarab/default.nix ./hosts/scarab/default.nix
./users/stitchynyan/default.nix
]; ];
}; };
lappy = nixpkgs.lib.nixosSystem { lappy = nixpkgs.lib.nixosSystem {

View file

@ -1,11 +1,25 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
let let
defaultUserName = "nixos";
in in
{ {
imports = [ ../default.nix ]; imports = [ ../default.nix ];
mobile = { users.users."${defaultUserName}" = {
isNormalUser = true;
password = "1234";
extraGroups = [
"dialout"
"feedbackd"
"networkmanager"
"video"
"wheel"
];
};
mobile = {
beautification = { beautification = {
silentBoot = lib.mkDefault true; silentBoot = lib.mkDefault true;
splash = lib.mkDefault true; splash = lib.mkDefault true;
@ -16,10 +30,14 @@ in
}; };
}; };
#services.openssh.enable = true; services.openssh.enable = true;
#services.pipewire = {
# enable = true;
# pulse.enable = true;
#};
services.xserver.desktopManager.phosh = { services.xserver.desktopManager.phosh = {
enable = true; enable = true;
user = "stitchynyan"; user = defaultUserName;
group = "users"; group = "users";
}; };