remove unnecessary rec
This commit is contained in:
parent
e5e4fc385c
commit
c8647160f3
3 changed files with 3 additions and 4 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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 = {
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue