revert nix stuff (again)

This commit is contained in:
Cy Pokhrel 2024-11-08 08:19:02 -05:00
parent d2b797a4e3
commit 4bb33c67eb
10 changed files with 44 additions and 116 deletions

View file

@ -1,23 +0,0 @@
{
description = "Home Manager configuration of yt";
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."yt" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./home.nix ];
};
};
}