home: allow marking device as laptop
This commit is contained in:
parent
953af1affc
commit
f75ff6849d
|
@ -6,6 +6,7 @@
|
|||
./env.nix
|
||||
./fish
|
||||
./flameshot.nix
|
||||
./laptop.nix
|
||||
./secrets
|
||||
./starship.nix
|
||||
./themes
|
||||
|
|
6
home/laptop.nix
Normal file
6
home/laptop.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.my.home.laptop = with lib; {
|
||||
enable = mkEnableOption "Laptop settings";
|
||||
};
|
||||
}
|
|
@ -1,6 +1,8 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
home-manager.users.alarsyo = {
|
||||
my.home.laptop.enable = true;
|
||||
|
||||
# Keyboard settings & i3 settings
|
||||
my.home.x.enable = true;
|
||||
my.home.x.i3bar.temperature.chip = "coretemp-isa-*";
|
||||
|
|
Loading…
Reference in a new issue