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
./hosts/scarab/default.nix
./users/stitchynyan/default.nix
];
};
lappy = nixpkgs.lib.nixosSystem {

View file

@ -1,10 +1,24 @@
{ config, lib, pkgs, ... }:
let
defaultUserName = "nixos";
in
{
imports = [ ../default.nix ];
users.users."${defaultUserName}" = {
isNormalUser = true;
password = "1234";
extraGroups = [
"dialout"
"feedbackd"
"networkmanager"
"video"
"wheel"
];
};
mobile = {
beautification = {
silentBoot = 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 = {
enable = true;
user = "stitchynyan";
user = defaultUserName;
group = "users";
};