nix-files/machines/desko/default.nix

16 lines
317 B
Nix
Raw Normal View History

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