rename nixos user (pc is broken anyways whatever)
This commit is contained in:
parent
595b5788d5
commit
0ef7783a21
3 changed files with 6 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
#+title: Flake Root
|
||||
|
||||
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";
|
||||
|
||||
|
@ -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.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.jane = import ./home/core.nix;
|
||||
home-manager.users.jjanzen = import ./home/core.nix;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
@ -15,8 +15,8 @@ Set up home manager for my user account and import submodules.
|
|||
./services/core.nix
|
||||
];
|
||||
|
||||
home.username = "jane";
|
||||
home.homeDirectory = "/home/jane";
|
||||
home.username = "jjanzen";
|
||||
home.homeDirectory = "/home/jjanzen";
|
||||
home.file.".wallpaper".source = ./.wallpaper;
|
||||
|
||||
home.stateVersion = "24.05";
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
#+title: User Configuration
|
||||
|
||||
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, ... }:
|
||||
|
||||
{
|
||||
users.users.jane = {
|
||||
users.users.jjanzen = {
|
||||
shell = pkgs.zsh;
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
|
|
Loading…
Add table
Reference in a new issue