nix-files/machines/desko/default.nix

19 lines
374 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";
2022-05-24 05:50:50 +00:00
extraPackages = [
pkgs.electrum
];
};
}