dotfiles/nixos/boxes/skinnyv/default.nix

50 lines
1.1 KiB
Nix
Raw Normal View History

2019-04-21 10:18:35 +01:00
{ config, pkgs, ... }:
{
networking.hostName = "skinnyv";
2020-01-03 14:28:53 +00:00
2020-07-25 11:57:23 +01:00
imports = [
<home-manager/nixos>
2021-02-28 14:23:28 +00:00
./hardware-configuration.nix
2020-07-25 11:57:23 +01:00
../../boot.nix
../../common.nix
../../gfx-intel.nix
../../zerotier.nix
2020-08-16 12:14:31 +01:00
../../i3
2020-07-25 11:57:23 +01:00
../../distributed-builds.nix
../../gui
../../git
];
boot = {
2020-05-19 20:07:56 +01:00
kernelPackages = pkgs.linuxPackages_latest;
2020-04-29 11:00:10 +01:00
initrd.luks.devices = {
root =
{
device = "/dev/disk/by-uuid/ef6e91d9-c477-4ab7-ae39-4a0ee413cebe";
preLVM = true;
allowDiscards = true;
};
};
2019-07-07 12:08:00 +01:00
loader.grub = {
device = "nodev";
efiSupport = true;
};
loader.efi.canTouchEfiVariables = true;
};
2019-07-07 12:08:00 +01:00
time.timeZone = "Europe/London";
2019-04-26 11:30:22 +01:00
2020-07-25 08:26:12 +01:00
fonts.fontconfig.enable = true;
home-manager.users.cyryl = {...}: {
imports = [
2020-07-28 07:38:50 +01:00
../../home-manager
2020-07-25 08:26:12 +01:00
];
home.stateVersion = config.system.stateVersion;
nixpkgs.overlays = config.nixpkgs.overlays;
nixpkgs.config = config.nixpkgs.config;
2020-07-25 08:51:19 +01:00
home.file.".config/i3/status.toml".source = ../../../.config/i3/status-single-bat.toml;
2020-07-25 08:26:12 +01:00
};
2019-07-07 12:08:00 +01:00
}