flake update

This commit is contained in:
2025-12-14 01:37:59 +03:00
parent c9aad3fb95
commit bcf60e24f4
7 changed files with 102 additions and 213 deletions
+33
View File
@@ -0,0 +1,33 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
home-manager = {
url = "github:nix-community/home-manager/release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
};
todo.url = "github:sioodmy/todo";
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
};
outputs = inputs@{ nixpkgs, home-manager, ... }:
let
system = "x86_64-linux";
username = "krosh";
gitName = "Dmitrii Gudov";
gitEmail = "gudovdo@my.msu.ru";
in {
homeConfigurations.${username} =
home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.${system};
modules = [ ./home.nix ];
extraSpecialArgs = { inherit inputs username gitName gitEmail; };
};
};
}