mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: in tree changes
This commit is contained in:
parent
185833d1fb
commit
d60c09d981
32 changed files with 339 additions and 155 deletions
26
nixos/environments/openbox/openbox.nix
Normal file
26
nixos/environments/openbox/openbox.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{pkgs, ...}: {
|
||||
services = {
|
||||
gnome.gnome-keyring.enable = true;
|
||||
xserver = {
|
||||
enable = true;
|
||||
libinput.touchpad = {
|
||||
tappingButtonMap = "lrm";
|
||||
clickMethod = "clickfinger";
|
||||
};
|
||||
windowManager = {
|
||||
openbox.enable = true;
|
||||
};
|
||||
displayManager.defaultSession = "none+openbox";
|
||||
xkbOptions = "ctrl:nocaps";
|
||||
};
|
||||
colord.enable = true;
|
||||
};
|
||||
programs.xfconf.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
menumaker
|
||||
xclip
|
||||
obconf
|
||||
numix-gtk-theme
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue