aboutsummaryrefslogtreecommitdiff
path: root/nixos/.flake
diff options
context:
space:
mode:
authorJacob Janzen <jacob.a.s.janzen@gmail.com>2024-10-02 10:02:02 -0500
committerJacob Janzen <jacob.a.s.janzen@gmail.com>2024-10-02 10:02:02 -0500
commit0ef7783a21a5f63f45d8c1bc466d0dce435f966e (patch)
tree995944e5ab57407b98d76f437d8d22d1d5e8dd13 /nixos/.flake
parent595b5788d596e8dcf3a79f42b670a018fffd2a37 (diff)
rename nixos user (pc is broken anyways whatever)
Diffstat (limited to 'nixos/.flake')
-rw-r--r--nixos/.flake/flake.nix.org4
-rw-r--r--nixos/.flake/home/core.nix.org4
-rw-r--r--nixos/.flake/system/users.nix.org4
3 files changed, 6 insertions, 6 deletions
diff --git a/nixos/.flake/flake.nix.org b/nixos/.flake/flake.nix.org
index 1e3c71b..c8ee8dd 100644
--- a/nixos/.flake/flake.nix.org
+++ b/nixos/.flake/flake.nix.org
@@ -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;
}
];
};
diff --git a/nixos/.flake/home/core.nix.org b/nixos/.flake/home/core.nix.org
index 25f3f2e..ec135d3 100644
--- a/nixos/.flake/home/core.nix.org
+++ b/nixos/.flake/home/core.nix.org
@@ -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";
diff --git a/nixos/.flake/system/users.nix.org b/nixos/.flake/system/users.nix.org
index 498857a..e922d8e 100644
--- a/nixos/.flake/system/users.nix.org
+++ b/nixos/.flake/system/users.nix.org
@@ -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" ];