remove unnecessary rec

This commit is contained in:
LavaDesu 2021-07-15 13:46:11 +07:00
parent e5e4fc385c
commit c8647160f3
Signed by: cilly
GPG key ID: 6500251E087653C9
3 changed files with 3 additions and 4 deletions

View file

@ -40,7 +40,7 @@
base = if !(self ? rev) then throw "Dirty git tree detected." else
{ config, ... }: {
system = rec {
system = {
configurationRevision = self.rev;
nixos = rec {
version = config.system.nixos.release + versionSuffix;

View file

@ -2,8 +2,7 @@
let
super = "Mod4";
alt = "Mod1";
in rec {
in {
services.sxhkd = {
enable = true;
keybindings = {

View file

@ -96,7 +96,7 @@ let
bindkey -M vicmd 'k' history-substring-search-up
bindkey -M vicmd 'j' history-substring-search-down
'';
in rec {
in {
programs.zsh = {
enable = true;
dotDir = ".config/zsh";