flake final

This commit is contained in:
2025-12-14 02:29:38 +03:00
parent 37ff696f8c
commit 631784560f
6 changed files with 246 additions and 34 deletions
-33
View File
@@ -1,33 +0,0 @@
{
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; };
};
};
}