dotfiles/_ubuntu/flake.nix

33 lines
885 B
Nix
Raw Normal View History

2023-01-02 05:38:18 +00:00
{
description = "Tyrel Nix";
inputs = {
2023-01-02 06:35:11 +00:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2023-01-02 05:38:18 +00:00
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
2023-01-02 15:23:09 +00:00
outputs = { self, nixpkgs, home-manager } :
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
defaultPackage.x86_64-linux = home-manager.defaultPackage.x86_64-linux;
homeConfigurations = {
"tyrel" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
../hosts/blackbox-jr/default.nix
2023-01-02 17:04:37 +00:00
../hosts/blackbox-jr/home-manager.nix
2023-01-02 15:23:09 +00:00
{
home = {
homeDirectory = "/home/tyrel";
username = "tyrel";
stateVersion = "22.05";
};
}
2023-01-02 05:38:18 +00:00
];
};
};
};
}