Organise NixOS and Home Manager modules
This commit is contained in:
parent
501b5cd011
commit
3c7aa3f03e
31 changed files with 26 additions and 25 deletions
modules/nixos
18
modules/nixos/awesome.nix
Normal file
18
modules/nixos/awesome.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ self, username, ... }:
|
||||
{
|
||||
services.xserver = {
|
||||
displayManager.lightdm.enable = true;
|
||||
|
||||
windowManager.awesome = {
|
||||
enable = true;
|
||||
noArgb = true;
|
||||
};
|
||||
};
|
||||
|
||||
home-manager.users.${username} = {
|
||||
xdg.configFile.awesome = {
|
||||
source = "${self}/config/awesome";
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue