Use default from Tuto

This commit is contained in:
Florian RICHER 2023-08-20 00:00:27 +02:00
parent a9a010e85f
commit ccb9886127

View file

@ -1,44 +1,23 @@
{ {
description = "System config"; description = "MrDev023's NixOS Flake";
inputs = { inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager/release-23.05";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };
outputs = { nixpkgs, home-manager, ...}@inputs: outputs = { self, nixpkgs, ... }@inputs: {
let
inherit (nixpkgs) lib;
util = import ./lib {
inherit system pkgs home-manager lib; overlays = (pkgs.overlays);
};
inherit (util) user;
inherit (util) host;
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [];
};
system = "x86_64-linux";
in {
homeManagerConfigurations = {
jq = user.mkHMUser {
};
};
nixosConfigurations = { nixosConfigurations = {
laptop = host.mkHost { "nixos-test" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
];
}; };
}; };
}; };
} }