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
|
|
|
|
];
|
|
|
|
|
2021-02-28 14:26:18 +00:00
|
|
|
boot.kernelPackages = pkgs.linuxPackages_latest_hardened;
|
|
|
|
time.timeZone = "Europe/London";
|
2019-04-26 11:30:22 +01:00
|
|
|
|
2021-02-28 14:26:18 +00:00
|
|
|
fonts.fontconfig.enable = true;
|
|
|
|
home-manager.users.cyryl = {...}: {
|
|
|
|
imports = [
|
|
|
|
../../home-manager
|
|
|
|
];
|
|
|
|
home.stateVersion = config.system.stateVersion;
|
2020-07-25 08:26:12 +01:00
|
|
|
|
2021-02-28 14:26:18 +00:00
|
|
|
nixpkgs.overlays = config.nixpkgs.overlays;
|
|
|
|
nixpkgs.config = config.nixpkgs.config;
|
2020-07-25 08:51:19 +01:00
|
|
|
|
2021-02-28 14:26:18 +00:00
|
|
|
home.file.".config/i3/status.toml".source = ../../../.config/i3/status-single-bat.toml;
|
|
|
|
};
|
2020-07-25 08:26:12 +01:00
|
|
|
|
2021-02-28 14:26:18 +00:00
|
|
|
}
|