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, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [ ./cli.nix ];
|
||||||
./cli.nix
|
|
||||||
# ./programs/xmonad/default.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
homeDirectory = "/home/alex";
|
homeDirectory = "/home/alex";
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,11 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
xsession = {
|
xsession = {
|
||||||
windowManager.command = let
|
windowManager.xmonad = {
|
||||||
xmonad = pkgs.xmonad-with-packages.override {
|
enable = true;
|
||||||
packages = self: [ self.xmonad-contrib ];
|
enableContribAndExtra = true;
|
||||||
};
|
extraPackages = hp: [ hp.dbus hp.monad-logger hp.xmonad-contrib ];
|
||||||
in "${xmonad}/bin/xmonad";
|
config = ./config.hs;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
services = {
|
services = {
|
||||||
|
gnome.gnome-keyring.enable = true;
|
||||||
upower.enable = true;
|
upower.enable = true;
|
||||||
|
|
||||||
xserver = {
|
xserver = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue