rename nixos user (pc is broken anyways whatever)

This commit is contained in:
Jacob Janzen 2024-10-02 10:02:02 -05:00
parent 595b5788d5
commit 0ef7783a21
3 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
#+title: Flake Root #+title: Flake Root
I use the unstable branch of =nixpkgs=. This file defines the outputs for my configuration (system and home). I use the unstable branch of =nixpkgs=. This file defines the outputs for my configuration (system and home).
#+begin_src nix :tangle ~/.flake/flake.nix :mkdirp yes #+begin_src nix
{ {
description = "My NixOS Configuration"; description = "My NixOS Configuration";
@ -25,7 +25,7 @@ I use the unstable branch of =nixpkgs=. This file defines the outputs for my con
home-manager.backupFileExtension = "bak"; home-manager.backupFileExtension = "bak";
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users.jane = import ./home/core.nix; home-manager.users.jjanzen = import ./home/core.nix;
} }
]; ];
}; };

View file

@ -15,8 +15,8 @@ Set up home manager for my user account and import submodules.
./services/core.nix ./services/core.nix
]; ];
home.username = "jane"; home.username = "jjanzen";
home.homeDirectory = "/home/jane"; home.homeDirectory = "/home/jjanzen";
home.file.".wallpaper".source = ./.wallpaper; home.file.".wallpaper".source = ./.wallpaper;
home.stateVersion = "24.05"; home.stateVersion = "24.05";

View file

@ -1,11 +1,11 @@
#+title: User Configuration #+title: User Configuration
Set up my user account with =zsh= as default shell with =sudoers= and network management permissions. Set up my user account with =zsh= as default shell with =sudoers= and network management permissions.
#+begin_src nix :tangle ~/.flake/system/users.nix :mkdirp yes #+begin_src nix
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
users.users.jane = { users.users.jjanzen = {
shell = pkgs.zsh; shell = pkgs.zsh;
isNormalUser = true; isNormalUser = true;
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];