nix-files/machines/lappy/default.nix

16 lines
325 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
{
imports = [
2022-05-27 05:15:47 +00:00
./../../helpers/universal
./../../helpers/hardware-x86_64.nix
./../../helpers/gui/gnome.nix
./fs.nix
];
home-manager.users.colin = import ./../../helpers/home-manager-gen-colin.nix {
inherit pkgs lib;
system = "x86_64-linux";
gui = "gnome";
};
}