ref: remove host.laptop from user modules
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: let
|
||||
laptop = false;
|
||||
in {
|
||||
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: {
|
||||
imports = [
|
||||
./secrets/secrets.nix
|
||||
./modules/aagl.nix
|
||||
@@ -21,7 +19,6 @@ in {
|
||||
inherit pkgs-fixed;
|
||||
inherit lib;
|
||||
inherit inputs;
|
||||
inherit laptop;
|
||||
name = "chest";
|
||||
})
|
||||
];
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: let
|
||||
laptop = true;
|
||||
in {
|
||||
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: {
|
||||
imports = [
|
||||
./secrets/secrets.nix
|
||||
./modules/grub.nix
|
||||
@@ -19,7 +17,6 @@ in {
|
||||
inherit pkgs-fixed;
|
||||
inherit lib;
|
||||
inherit inputs;
|
||||
inherit laptop;
|
||||
name = "chest";
|
||||
})
|
||||
];
|
||||
@@ -28,5 +25,5 @@ in {
|
||||
nixpkgs.config.allowBroken = true;
|
||||
programs.gamemode.enable = true;
|
||||
hardware.bluetooth.enable = true;
|
||||
host.laptop = laptop;
|
||||
host.laptop = true;
|
||||
}
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: let
|
||||
laptop = false;
|
||||
in {
|
||||
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: {
|
||||
imports = [
|
||||
./secrets/secrets.nix
|
||||
./modules/grub.nix
|
||||
@@ -21,7 +19,6 @@ in {
|
||||
inherit pkgs-fixed;
|
||||
inherit lib;
|
||||
inherit inputs;
|
||||
inherit laptop;
|
||||
name = "sweetbread";
|
||||
fullname = "Sweet Bread";
|
||||
})
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: let
|
||||
laptop = true;
|
||||
in {
|
||||
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: {
|
||||
imports = [
|
||||
./secrets/secrets.nix
|
||||
./modules/grub.nix
|
||||
@@ -19,14 +17,13 @@ in {
|
||||
inherit pkgs-fixed;
|
||||
inherit lib;
|
||||
inherit inputs;
|
||||
inherit laptop;
|
||||
name = "sweetbread";
|
||||
fullname = "Sweet Bread";
|
||||
})
|
||||
];
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
host.laptop = laptop;
|
||||
host.laptop = true;
|
||||
|
||||
environment.systemPackages = [ pkgs.dbgate ];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user