hosts | formating and add flag for primary system
This commit is contained in:
parent
25ef9fe1ac
commit
5439aff12e
6 changed files with 53 additions and 7 deletions
|
|
@ -1,4 +1,11 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
# ../disko/mmcblk.nix
|
||||
|
|
@ -18,6 +25,7 @@
|
|||
tlp.enable = false;
|
||||
gnome-calendar.enable = false;
|
||||
};
|
||||
primary.enable = false;
|
||||
wm = {
|
||||
sway.enable = true;
|
||||
kde.enable = false;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,11 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
inputs.nixos-hardware.nixosModules.google-pixelbook
|
||||
./hardware-configuration.nix
|
||||
|
|
@ -20,6 +27,7 @@
|
|||
tlp.enable = true;
|
||||
gnome-calendar.enable = true;
|
||||
};
|
||||
primary.enable = true;
|
||||
wm = {
|
||||
sway.enable = true;
|
||||
kde.enable = false;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,9 @@
|
|||
{ inputs, config, pkgs, ... }: {
|
||||
{
|
||||
inputs,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
inputs.nixos-hardware.nixosModules.common-cpu-intel
|
||||
|
|
@ -21,6 +26,7 @@
|
|||
tlp.enable = true;
|
||||
gnome-calendar.enable = false;
|
||||
};
|
||||
primary.enable = false;
|
||||
wm = {
|
||||
sway.enable = true;
|
||||
kde.enable = false;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,11 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
inputs.nixos-hardware.nixosModules.google-pixelbook
|
||||
./hardware-configuration.nix
|
||||
|
|
@ -19,6 +26,7 @@
|
|||
tlp.enable = true;
|
||||
gnome-calendar.enable = false;
|
||||
};
|
||||
primary.enable = false;
|
||||
wm = {
|
||||
sway.enable = true;
|
||||
kde.enable = false;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,11 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
inputs.nixos-hardware.nixosModules.dell-xps-13-9310
|
||||
./hardware-configuration.nix
|
||||
|
|
@ -6,7 +13,7 @@
|
|||
../workstation
|
||||
];
|
||||
networking.hostName = "loki";
|
||||
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
||||
variables.address = "100.72.0.1";
|
||||
variables.swayScale = "1.1";
|
||||
|
||||
|
|
@ -22,6 +29,7 @@
|
|||
auto-cpufreq.enable = true;
|
||||
gnome-calendar.enable = true;
|
||||
};
|
||||
primary.enable = false;
|
||||
wm = {
|
||||
sway.enable = true;
|
||||
kde.enable = false;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,11 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-x260
|
||||
inputs.nixos-hardware.nixosModules.common-pc-laptop
|
||||
|
|
@ -23,6 +30,7 @@
|
|||
auto-cpufreq.enable = true;
|
||||
gnome-calendar.enable = true;
|
||||
};
|
||||
primary.enable = false;
|
||||
wm = {
|
||||
sway.enable = true;
|
||||
kde.enable = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue