dotfiles/nixos/boxes/skinnyv/default.nix

30 lines
590 B
Nix
Raw Normal View History

2022-12-19 09:09:08 +00:00
{
config,
pkgs,
...
}: {
2019-04-21 10:18:35 +01:00
networking.hostName = "skinnyv";
2020-01-03 14:28:53 +00:00
2020-07-25 11:57:23 +01:00
imports = [
2021-02-28 14:23:28 +00:00
./hardware-configuration.nix
2020-07-25 11:57:23 +01:00
../../boot.nix
2022-05-28 10:31:25 +01:00
../../backups.nix
../../distributed-builds.nix
2020-07-25 11:57:23 +01:00
../../gfx-intel.nix
2022-05-28 10:31:25 +01:00
../../git
../../gui
2020-08-16 12:14:31 +01:00
../../i3
2022-05-28 10:31:25 +01:00
../../mercurial
2020-07-25 11:57:23 +01:00
];
2021-12-04 10:43:02 +00:00
boot.kernelPackages = pkgs.linuxPackages_latest;
2021-04-11 12:15:39 +01:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2021-02-28 14:26:18 +00:00
time.timeZone = "Europe/London";
2019-04-26 11:30:22 +01:00
2021-07-18 18:53:01 +01:00
services.thermald.enable = true;
2022-12-19 09:09:08 +00:00
home-manager.users.cyryl = {...}: {
imports = [../../home-manager/programs/kitty.nix];
2021-09-18 10:18:35 +01:00
};
2021-02-28 14:26:18 +00:00
}