summary refs log tree commit diff stats
path: root/flake.nix
blob: a41d0926ad14570776bcd7564abaa4a29da90718 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  description = "My Nixo system configuration";
  inputs = {
    nixpkgs.url = "github:NixOs/nixpkgs/nixos-unstable";
    home-manager.url = "github:nix-community/home-manager/master";
  };
  outputs = {
    self,
    nixpkgs,
    ...
  } @ attrs : {
    nixosConfigurations.thinklappi = nixpkgs.lib.nixosSystem {
      system = "x86_64-linux";
      specialArgs = attrs;
      modules = [./sysconf/thinklappi.nix];
    };
  };
}