From c35b4cbb39f2495c5c6c5b2f62f8c41f25ce926c Mon Sep 17 00:00:00 2001 From: ediblerope Date: Thu, 25 Dec 2025 11:16:32 +0000 Subject: [PATCH] Update configuration-template.nix --- configuration-template.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/configuration-template.nix b/configuration-template.nix index 19dfb24..8fb076d 100644 --- a/configuration-template.nix +++ b/configuration-template.nix @@ -1,10 +1,11 @@ # configuration-template.nix #################################################################################################################################################################### ## IMPORTANT: On a fresh NixOS install, run this command first: ## -## nix-shell -p git --run "sudo nix-channel --add https://nixos.org/channels/nixos-unstable nixos && sudo nix-channel --update && sudo nixos-rebuild switch" ## +## nix-shell -p git --run "sudo nix-channel --add https://nixos.org/channels/nixos-unstable nixos && \ ## +## sudo nix-channel --add https://github.com/gmodena/nix-flatpak/archive/main.tar.gz nix-flatpak && \ ## +## sudo nix-channel --update && sudo nixos-rebuild switch" ## ## ## #################################################################################################################################################################### - { config, pkgs, lib, ... }: let gitConfig = builtins.fetchGit { @@ -17,12 +18,10 @@ imports = [ ./hardware-configuration.nix "${gitConfig}/git.nix" ]; - networking.hostName = "HOSTNAME-HERE"; # Change this! ###################################################### ## Add Nixos-default generated boot loader settings ## ###################################################### - system.stateVersion = "25.11"; }