include home-manager channel
This commit is contained in:
parent
339938b213
commit
823500e981
15
flake.nix
15
flake.nix
|
@ -1,15 +1,26 @@
|
||||||
{
|
{
|
||||||
description = "NixOS system flake";
|
description = "NixOS system flake";
|
||||||
|
|
||||||
inputs = {
|
inputs =
|
||||||
|
{
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
|
||||||
nixos-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
nixos-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||||
|
home-manager = {
|
||||||
|
url = "github:nix-community/home-manager/release-22.11";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ... }@inputs: {
|
outputs =
|
||||||
|
{ self, nixpkgs, ... }@inputs:
|
||||||
|
#let
|
||||||
|
# system = "x86_64-linux";
|
||||||
|
#in
|
||||||
|
{
|
||||||
|
|
||||||
nixosConfigurations.thinknix = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.thinknix = nixpkgs.lib.nixosSystem {
|
||||||
|
#inherit system;
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [ ./nixos/configuration.nix ];
|
modules = [ ./nixos/configuration.nix ];
|
||||||
# necessary to make the top-level inputs available to system configuration
|
# necessary to make the top-level inputs available to system configuration
|
||||||
|
|
Loading…
Reference in a new issue