home: basic i3 setup

This commit is contained in:
Antoine Martin 2021-04-19 14:29:38 +02:00
parent 5c86bdd16a
commit 2723186f49
5 changed files with 100 additions and 0 deletions

View file

@ -10,6 +10,8 @@ in
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./home.nix
];
# Use the systemd-boot EFI boot loader.

7
hosts/boreal/home.nix Normal file
View file

@ -0,0 +1,7 @@
{ ... }:
{
home-manager.users.alarsyo = {
# Keyboard settings & i3 settings
my.home.x.enable = true;
};
}