Compare commits
No commits in common. "1f2545df5b8b3398af333109f7c816d18d042f91" and "24ae60a3fe199cd4ad034d2c0ffe5febb1d1e36f" have entirely different histories.
1f2545df5b
...
24ae60a3fe
3 changed files with 8 additions and 9 deletions
|
|
@ -1,10 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./cli.nix
|
||||
# ./programs/xmonad/default.nix
|
||||
];
|
||||
imports = [ ./cli.nix ];
|
||||
|
||||
home = {
|
||||
homeDirectory = "/home/alex";
|
||||
|
|
|
|||
|
|
@ -2,10 +2,11 @@
|
|||
|
||||
{
|
||||
xsession = {
|
||||
windowManager.command = let
|
||||
xmonad = pkgs.xmonad-with-packages.override {
|
||||
packages = self: [ self.xmonad-contrib ];
|
||||
windowManager.xmonad = {
|
||||
enable = true;
|
||||
enableContribAndExtra = true;
|
||||
extraPackages = hp: [ hp.dbus hp.monad-logger hp.xmonad-contrib ];
|
||||
config = ./config.hs;
|
||||
};
|
||||
in "${xmonad}/bin/xmonad";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
{
|
||||
services = {
|
||||
gnome.gnome-keyring.enable = true;
|
||||
upower.enable = true;
|
||||
|
||||
xserver = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue