delete old

This commit is contained in:
2025-10-08 19:47:45 +02:00
parent 7c533ae24b
commit 01b6bc1593
4 changed files with 0 additions and 174 deletions

View File

@@ -1,24 +0,0 @@
{
description = "nix base CLI env";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{ nixpkgs, home-manager, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
homeConfigurations."root" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./home.nix ];
};
};
}