summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorDominik Kaiser2025-02-15 16:07:28 +0100
committerDominik Kaiser2025-02-15 16:07:28 +0100
commit61a06f286ae470acce6c93703f4e535ac5d9e3a7 (patch)
tree5f4e2c164d8ecc61993e4af99a8518487318224e /flake.nix
parenta824e71e916af255ed3a610dc02df944969f218a (diff)
downloadnixos-61a06f286ae470acce6c93703f4e535ac5d9e3a7.tar.gz
nixos-61a06f286ae470acce6c93703f4e535ac5d9e3a7.zip
Fix FIXMEs
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 4 insertions, 8 deletions
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];
};
};