mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-04-01 02:00:22 +02:00
Implement home-manager
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
{ ... }:
|
||||
{
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports = [
|
||||
|
||||
7
laptop/modules/home/dconf/apps.nix
Normal file
7
laptop/modules/home/dconf/apps.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
dconf.settings = { };
|
||||
}
|
||||
11
laptop/modules/home/dconf/default.nix
Normal file
11
laptop/modules/home/dconf/default.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./apps.nix
|
||||
./extensions.nix
|
||||
./gnome.nix
|
||||
];
|
||||
}
|
||||
7
laptop/modules/home/dconf/extensions.nix
Normal file
7
laptop/modules/home/dconf/extensions.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
dconf.settings = { };
|
||||
}
|
||||
15
laptop/modules/home/dconf/gnome.nix
Normal file
15
laptop/modules/home/dconf/gnome.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
...
|
||||
|
||||
}:
|
||||
|
||||
{
|
||||
dconf.settings = {
|
||||
"org/gnome/desktop/peripherals/touchpad" = {
|
||||
click-method = "areas";
|
||||
disable-while-typing = true;
|
||||
speed = 0.19548872180451138;
|
||||
two-finger-scrolling-enabled = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
9
laptop/modules/home/default.nix
Normal file
9
laptop/modules/home/default.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./dconf
|
||||
];
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
services.thermald.enable = true;
|
||||
services.power-profiles-daemon.enable = false;
|
||||
|
||||
Reference in New Issue
Block a user