mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-10 04:40:05 +00:00
🚧 Work on fixing booting issues and various other things
This commit is contained in:
parent
dc87b2c186
commit
cd32ad1c61
9 changed files with 95 additions and 52 deletions
|
@ -1,29 +1,29 @@
|
|||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./hardware.nix
|
||||
];
|
||||
|
||||
users.users.jo.isNormalUser = true;
|
||||
users.users.jo.initialPassword = "balls";
|
||||
users.users.jo.createHome = true;
|
||||
|
||||
# System configuration
|
||||
puzzlevision = {
|
||||
# TODO: improve home-manager configuration loading as development continues and make sure everything works correctly.
|
||||
users = {
|
||||
jo = {
|
||||
enable = true;
|
||||
initialPassword = "balls";
|
||||
extraGroups = [ "wheel" ];
|
||||
};
|
||||
};
|
||||
|
||||
desktop.gnome.enable = true;
|
||||
utils.vm.enable = true;
|
||||
common.grub.enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
ghostty
|
||||
firefox
|
||||
vscodium
|
||||
];
|
||||
|
||||
system.stateVersion = "25.05";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue