From 61a06f286ae470acce6c93703f4e535ac5d9e3a7 Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Sat, 15 Feb 2025 16:07:28 +0100 Subject: Fix FIXMEs --- flake.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index e1f978d..65a7b17 100644 --- a/flake.nix +++ b/flake.nix @@ -3,10 +3,10 @@ inputs = { # Nixpkgs - nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; # Home manager - home-manager.url = "github:nix-community/home-manager/release-23.11"; + home-manager.url = "github:nix-community/home-manager/release-24.11"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; }; @@ -21,10 +21,8 @@ # NixOS configuration entrypoint # Available through 'nixos-rebuild --flake .#your-hostname' nixosConfigurations = { - # FIXME replace with your hostname - your-hostname = nixpkgs.lib.nixosSystem { + sol = nixpkgs.lib.nixosSystem { specialArgs = {inherit inputs outputs;}; - # > Our main nixos configuration file < modules = [./nixos/configuration.nix]; }; }; @@ -32,11 +30,9 @@ # Standalone home-manager configuration entrypoint # Available through 'home-manager --flake .#your-username@your-hostname' homeConfigurations = { - # FIXME replace with your username@hostname - "your-username@your-hostname" = home-manager.lib.homeManagerConfiguration { + "dk@sol" = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance extraSpecialArgs = {inherit inputs outputs;}; - # > Our main home-manager configuration file < modules = [./home-manager/home.nix]; }; }; -- cgit v1.2.3