From 83ac40baa36e5abaefcc20ccdef17799295ec604 Mon Sep 17 00:00:00 2001 From: Zephrynis Date: Sun, 26 Oct 2025 21:57:12 +0000 Subject: [PATCH] Set user configuration to 'zeph' in Nix files Replaces placeholder 'yourusername' with 'zeph' in flake.nix and home/home.nix for user-specific Home Manager configuration. --- flake.nix | 8 ++++---- home/home.nix | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index bcc65f1..d492a41 100644 --- a/flake.nix +++ b/flake.nix @@ -41,8 +41,8 @@ home-manager.useUserPackages = true; home-manager.extraSpecialArgs = { inherit inputs; }; - # Replace "yourusername" with your actual username - home-manager.users.yourusername = import ./home/home.nix; + # User configuration + home-manager.users.zeph = import ./home/home.nix; } ]; }; @@ -68,8 +68,8 @@ home-manager.useUserPackages = true; home-manager.extraSpecialArgs = { inherit inputs; }; - # Replace "yourusername" with your actual username - home-manager.users.yourusername = import ./home/home.nix; + # User configuration + home-manager.users.zeph = import ./home/home.nix; } ]; }; diff --git a/home/home.nix b/home/home.nix index 07b6c7a..54a5841 100644 --- a/home/home.nix +++ b/home/home.nix @@ -3,8 +3,8 @@ { # Home Manager configuration for user-level dotfiles and applications - home.username = "yourusername"; # Change this - home.homeDirectory = "/home/yourusername"; # Change this + home.username = "zeph"; + home.homeDirectory = "/home/zeph"; # Packages to install for this user home.packages = with pkgs; [