Add grablet
This commit is contained in:
parent
3361c316b9
commit
bb015fc244
2 changed files with 28 additions and 3 deletions
28
flake.nix
28
flake.nix
|
@ -283,6 +283,34 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
grablet = nixpkgs.lib.nixosSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
modules = with nixosModules; [
|
||||||
|
common
|
||||||
|
|
||||||
|
outputs.diskoConfigurations.standard
|
||||||
|
hardware.nixosModules.common-cpu-intel-kaby-lake
|
||||||
|
hardware.nixosModules.common-pc-laptopp-ssd
|
||||||
|
graphical-workstation
|
||||||
|
laptop
|
||||||
|
gaming
|
||||||
|
|
||||||
|
./nixos/thablet.nix
|
||||||
|
|
||||||
|
{
|
||||||
|
home-manager.users.daniel = {
|
||||||
|
imports = with homeManagerModules; [
|
||||||
|
iex
|
||||||
|
cargo
|
||||||
|
linux-desktop-environment-config
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
thinker = nixpkgs.lib.nixosSystem {
|
thinker = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = with nixosModules; [
|
modules = with nixosModules; [
|
||||||
|
|
|
@ -18,9 +18,6 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
|
||||||
networking.hostName = "beefcake";
|
networking.hostName = "beefcake";
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../modules/nixos/intel.nix
|
|
||||||
../modules/nixos/fonts.nix
|
|
||||||
|
|
||||||
# TODO: break these modules out someday maybe?
|
# TODO: break these modules out someday maybe?
|
||||||
{
|
{
|
||||||
# hardware
|
# hardware
|
||||||
|
|
Loading…
Reference in a new issue