diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2021-07-07 22:14:22 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2021-07-07 22:14:22 +0700 |
commit | f140f08bc6c39037958048294fd241a28d8da607 (patch) | |
tree | a825016ac64b2a3be8a012011397a1da7f25bb38 /nix/etc/nixos/awesome.nix | |
parent | 88051c9ccfa9b863b41f0ae86dbb1caaeb739743 (diff) | |
download | dotfiles-f140f08bc6c39037958048294fd241a28d8da607.tar.gz |
Snapshot config before there're too much
I thought I could always make meaningful config msgs.
Diffstat (limited to 'nix/etc/nixos/awesome.nix')
-rw-r--r-- | nix/etc/nixos/awesome.nix | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/nix/etc/nixos/awesome.nix b/nix/etc/nixos/awesome.nix deleted file mode 100644 index dfd526d..0000000 --- a/nix/etc/nixos/awesome.nix +++ /dev/null @@ -1,40 +0,0 @@ -{ pkgs, ... }: - -{ - imports = [ ./redshift.nix ]; - - fonts.fonts = with pkgs; [ lmodern ]; - - services = { - autorandr.enable = true; - xserver = { - enable = true; - displayManager.startx.enable = true; - windowManager.awesome.enable = true; - - layout = "us"; - xkbOptions = "caps:ctrl_modifier,compose:menu"; - libinput.enable = true; # Enable touchpad support. - }; - }; - - i18n = { - defaultLocale = "en_US.UTF-8"; - inputMethod = { - enabled = "ibus"; - ibus.engines = with pkgs.ibus-engines; [ table table-others ]; - }; - }; - - environment.systemPackages = with pkgs; [ - gnome.adwaita-icon-theme qt5ct - gnome.networkmanagerapplet keynav mate.mate-power-manager - clipnotify playerctl pulsemixer xclip xdotool - rxvt_unicode-with-plugins urxvt_autocomplete_all_the_things urxvt_font_size - aerc amfora newsboat ranger ueberzug vim_configurable - arandr audacious firefox gimp nheko scrot xorg.xkill zathura - ]; - - programs.nm-applet.enable = true; - programs.slock.enable = true; -} |