From 66f2ba734b1ab7ca4df9b38d370918cc8dd21294 Mon Sep 17 00:00:00 2001 From: Sayuop Date: Wed, 19 Nov 2025 21:15:03 +0100 Subject: [PATCH] Final changes to make it replicable --- configuration.nix | 6 +++--- flake.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configuration.nix b/configuration.nix index 685fd50..0879e50 100644 --- a/configuration.nix +++ b/configuration.nix @@ -16,7 +16,7 @@ # boot.loader.efi.canTouchEfiVariables = true; # Networking - networking.hostName = "cribnix"; # Change this to your hostname + networking.hostName = "myhost"; # Change this to your hostname networking.networkmanager.enable = true; # Time zone @@ -40,9 +40,9 @@ nix.settings.experimental-features = [ "nix-command" "flakes" ]; # User account - users.users.crib = { + users.users.YOURUSERNAME = { isNormalUser = true; - description = "crib"; + description = "Your Name"; extraGroups = [ "networkmanager" "wheel" "video" "audio" ]; shell = pkgs.zsh; }; diff --git a/flake.nix b/flake.nix index 0764aae..a850770 100644 --- a/flake.nix +++ b/flake.nix @@ -15,7 +15,7 @@ outputs = { self, nixpkgs, home-manager, hyprland, ... }@inputs: { nixosConfigurations = { # Replace 'myhost' with your hostname - cribnix = nixpkgs.lib.nixosSystem { + myhost = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit inputs; }; modules = [