new commit banana
This commit is contained in:
parent
a21715b71a
commit
150c58ff9d
3 changed files with 4 additions and 4 deletions
|
@ -37,7 +37,7 @@
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
vlaptop = mkSystem {
|
vlaptop = mkSystem {
|
||||||
hostname = "nixos";
|
hostname = "nixos";
|
||||||
modules = [./hosts/vali/laptop];
|
modules = [./hosts/vali/laptop ./modules/vali];
|
||||||
user-configs = [{
|
user-configs = [{
|
||||||
name = "vali";
|
name = "vali";
|
||||||
config = ./homes/vali/vlaptop.nix;
|
config = ./homes/vali/vlaptop.nix;
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../../modules/vali/default.nix
|
../../../modules/vali/default.nix
|
||||||
../common
|
../../common
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./packages.nix
|
./packages.nix
|
||||||
./boot.nix
|
./boot.nix
|
||||||
];
|
];
|
||||||
i3.enable = true;
|
i3wm.enable = true;
|
||||||
security.polkit.enable = true;
|
security.polkit.enable = true;
|
||||||
# Set the keyboard layout to DE
|
# Set the keyboard layout to DE
|
||||||
services.xserver.xkb.layout.enable = "de";
|
services.xserver.xkb.layout.enable = "de";
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs, lib, config, ...}
|
{ pkgs, lib, config, ...}
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
i3.enable = lib.mkEnableOption "enable i3wm";
|
i3wm.enable = lib.mkEnableOption "enable i3wm";
|
||||||
};
|
};
|
||||||
config = lib.mkIf config.i3wm.enable {
|
config = lib.mkIf config.i3wm.enable {
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue