summaryrefslogtreecommitdiff
path: root/users/live-user.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-11-19 21:02:52 +0100
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-11-19 21:02:52 +0100
commit892de67a9f64d0b0cdb023d830a019d8feec0a57 (patch)
tree0c5fd0c60ef93bb5cdc5f83c8cade0c5dddb4899 /users/live-user.nix
parentf5b37610b3835ea26757ef36d554ec598d53100c (diff)
Nix fmt
Diffstat (limited to 'users/live-user.nix')
-rw-r--r--users/live-user.nix39
1 files changed, 26 insertions, 13 deletions
diff --git a/users/live-user.nix b/users/live-user.nix
index b7182c8..8e8c237 100644
--- a/users/live-user.nix
+++ b/users/live-user.nix
@@ -1,16 +1,29 @@
-{pkgs, lib, config,...}: {
- imports = [./user-common.nix];
- programs.zsh.enable = true;
- users.users.live-user = {
- shell = pkgs.zsh;
- isNormalUser = true;
- initialPassword = "PleazeChangeThis123";
- extraGroups = [ "wheel" "networkmanager" "input" "docker" "adbusers" "libvirtd" ]; # Enable ‘sudo’ for the user.
- packages = with pkgs; [
- home-manager
- ];
- };
+{
+ pkgs,
+ lib,
+ config,
+ ...
+}:
+{
+ imports = [ ./user-common.nix ];
+ programs.zsh.enable = true;
+ users.users.live-user = {
+ shell = pkgs.zsh;
+ isNormalUser = true;
+ initialPassword = "PleazeChangeThis123";
+ extraGroups = [
+ "wheel"
+ "networkmanager"
+ "input"
+ "docker"
+ "adbusers"
+ "libvirtd"
+ ]; # Enable ‘sudo’ for the user.
+ packages = with pkgs; [
+ home-manager
+ ];
+ };
- home-manager.users.live-user.imports = [ ../home/live-user.nix ];
+ home-manager.users.live-user.imports = [ ../home/live-user.nix ];
}