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