You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
{
|
|
description = "A very basic flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
nix-colors.url = "github:misterio77/nix-colors";
|
|
home-manager = {
|
|
url = github:nix-community/home-manager;
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, nixos-hardware, home-manager, nix-colors, ... }@inputs:
|
|
let
|
|
username = "chrigi";
|
|
lib = nixpkgs.lib;
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
config.allowUnfree = true;
|
|
};
|
|
in {
|
|
nixosConfigurations.nix-fw16 = lib.nixosSystem {
|
|
specialArgs = {
|
|
inherit pkgs;
|
|
};
|
|
modules = [
|
|
./configuration.nix
|
|
./greeter.nix
|
|
nixos-hardware.nixosModules.framework-16-7040-amd
|
|
home-manager.nixosModules.home-manager {
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
home-manager.users.${username} = import ./home.nix;
|
|
home-manager.extraSpecialArgs = {inherit username nix-colors; };
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|
|
|
|
|