nix-files/machines/desko/default.nix

24 lines
501 B
Nix
Raw Normal View History

2022-06-08 20:02:28 +00:00
{ pkgs, config, lib, ... }:
{
imports = [
2022-05-27 05:15:47 +00:00
./../../helpers/universal
./fs.nix
];
home-manager.users.colin = import ./../../helpers/home-manager-gen-colin.nix {
2022-06-08 20:02:28 +00:00
inherit pkgs config lib;
system = "x86_64-linux";
2022-06-03 06:04:40 +00:00
# gui = "gnome";
2022-06-03 08:39:11 +00:00
# gui = "i3";
gui = "sway";
2022-05-24 05:50:50 +00:00
extraPackages = [
pkgs.electrum
];
};
2022-06-07 00:35:28 +00:00
colinsane.gui.sway.enable = true;
# docs: https://nixos.org/manual/nixos/stable/options.html#opt-system.stateVersion
system.stateVersion = "21.05";
}