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

View file

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

View file

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