diff options
| -rw-r--r-- | machines/lemptop.nix | 1 | ||||
| -rw-r--r-- | profiles/core/home.nix | 4 | ||||
| -rw-r--r-- | profiles/core/meta.nix | 2 | ||||
| -rw-r--r-- | profiles/graphical/suckless.nix | 2 |
4 files changed, 4 insertions, 5 deletions
diff --git a/machines/lemptop.nix b/machines/lemptop.nix index ee362a1..7b79436 100644 --- a/machines/lemptop.nix +++ b/machines/lemptop.nix @@ -48,7 +48,6 @@ with lib; programs.slock.enable = true; services.xserver.enable = true; services.xserver.displayManager.startx.enable = true; - services.xserver.libinput.enable = true; services.pcscd.enable = true; security.pam.services = { diff --git a/profiles/core/home.nix b/profiles/core/home.nix index 96157ff..3a581eb 100644 --- a/profiles/core/home.nix +++ b/profiles/core/home.nix @@ -159,7 +159,7 @@ } fzf-stern () { - kubectl config set-context --current --namespace "$1" + kubectl config set-context --current --namespace "$1" && kubectl stern -n "$1" "$2" --color always 2>&1 | fzf --ansi --tail 100000 --tac --no-sort --exact \ --bind 'ctrl-o:execute:kubectl logs {1} | nvim -' \ @@ -233,7 +233,7 @@ k = "kubectl "; d = "docker "; ls = "ls --color=auto"; - s = "${if machine.isDarwin then "darwin-rebuild" else "sudo nixos-rebuild"} switch --flake ${config.my.home}/flake#${config.networking.hostName}"; + s = "${if machine.isDarwin then "darwin-rebuild" else "sudo nixos-rebuild"} switch --flake /nix-config#${config.networking.hostName}"; b = "/run/current-system/bin/switch-to-configuration boot"; v = "vremote"; lf = "lfub"; diff --git a/profiles/core/meta.nix b/profiles/core/meta.nix index add9b34..0cf0c1c 100644 --- a/profiles/core/meta.nix +++ b/profiles/core/meta.nix @@ -1,6 +1,6 @@ {inputs,lib,config, ...}: with lib; { lib.meta = { - configPath = "${config.my.home}/flake"; + configPath = "/nix-config"; mkMutableSymlink = path: config.hm.lib.file.mkOutOfStoreSymlink (config.lib.meta.configPath + removePrefix (toString inputs.self) (toString path)); diff --git a/profiles/graphical/suckless.nix b/profiles/graphical/suckless.nix index 061734d..e2d8b34 100644 --- a/profiles/graphical/suckless.nix +++ b/profiles/graphical/suckless.nix @@ -8,7 +8,7 @@ nixpkgs.overlays = [(import (self + "/overlays/suckless.nix") {inherit pkgs; home = self;})]; services.xserver.enable = true; services.xserver.displayManager.startx.enable = true; - services.xserver.libinput.enable = true; + services.libinput.enable = true; hm = { xsession = { enable = true; |
