Use default from Tuto
This commit is contained in:
parent
a9a010e85f
commit
ccb9886127
1 changed files with 10 additions and 31 deletions
41
flake.nix
41
flake.nix
|
@ -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
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
Reference in a new issue