Compare commits

..

1 Commits

Author SHA1 Message Date
669bc5bb3d
Enable audio and add a basic home configuration 2020-05-09 01:30:09 +02:00
2 changed files with 9 additions and 11 deletions

View File

@ -73,7 +73,6 @@
./modules/gui.nix
./modules/datasync.nix
./modules/audio.nix
./modules/home.nix
./modules/hardware-configuration.nix
];

View File

@ -2,8 +2,9 @@
{
# Display manager
services.xserver.enable = true;
services.xserver.displayManager = {
services.xserver = {
enable = true;
displayManager = {
defaultSession = "sway";
sddm = {
enable = true;
@ -13,6 +14,7 @@
};
};
};
};
# Window manager
programs.sway = {
@ -55,7 +57,4 @@
latitude = 35.89;
longitude = -5.32;
};
# Bar
programs.waybar.enable = true;
}