diff options
| author | kdam0 <me@kumardamani.net> | 2023-04-07 18:23:49 +0000 |
|---|---|---|
| committer | kdam0 <me@kumardamani.net> | 2023-04-07 18:23:49 +0000 |
| commit | e23e2562071536396bccf3c8529e12e9b1302fe7 (patch) | |
| tree | dd3204cda528f956c51f2cb0ebdca721a4681b75 | |
| parent | fc384fc48e05f17f2d28a7a7d2b0b1802eabea53 (diff) | |
prep from nvim
| -rw-r--r-- | nixpkgs/.config/nixpkgs/per-user/kdam0-home/configuration.nix | 3 | ||||
| -rw-r--r-- | nixpkgs/.config/nixpkgs/per-user/kdam0-home/home.nix | 16 |
2 files changed, 13 insertions, 6 deletions
diff --git a/nixpkgs/.config/nixpkgs/per-user/kdam0-home/configuration.nix b/nixpkgs/.config/nixpkgs/per-user/kdam0-home/configuration.nix index 903bab8..0440707 100644 --- a/nixpkgs/.config/nixpkgs/per-user/kdam0-home/configuration.nix +++ b/nixpkgs/.config/nixpkgs/per-user/kdam0-home/configuration.nix @@ -107,6 +107,9 @@ #}; #hardware.enableAllFirmware = true; + hardware.bluetooth.enable = true; + services.fwupd.enable = true; + services.blueman.enable = true; } diff --git a/nixpkgs/.config/nixpkgs/per-user/kdam0-home/home.nix b/nixpkgs/.config/nixpkgs/per-user/kdam0-home/home.nix index a757ccc..1c842d6 100644 --- a/nixpkgs/.config/nixpkgs/per-user/kdam0-home/home.nix +++ b/nixpkgs/.config/nixpkgs/per-user/kdam0-home/home.nix @@ -1,4 +1,4 @@ -{ config, pkgs, libs, ...}: +{ config, pkgs, ...}: { home.username = "kdam0"; home.homeDirectory = "/home/kdam0"; @@ -14,13 +14,14 @@ l = "ls -l"; ll = "ls -al"; ".." = "cd .."; - up = "sudo nixos-rebuild switch"; - clean = "sudo nix-collect-garbage -d"; + v = "nvim $@"; + r = "ranger $@"; + gst = "git status"; cdwl = "nvim ~/.config/nixpkgs/common/dwl_4/config.h"; chm = "nvim ~/.config/nixpkgs/per-user/kdam0-home/home.nix"; cnix = "nvim ~/.config/nixpkgs/per-user/kdam0-home/configuration.nix"; - gst = "git status"; - v = "nvim $@"; + up = "sudo nixos-rebuild switch"; + clean = "sudo nix-collect-garbage -d"; search = "nix search nixpkgs $@"; }; zplug = { @@ -108,6 +109,9 @@ pkgs.ripgrep pkgs.fd pkgs.stow + pkgs.unzip + pkgs.nodejs + pkgs.cargo # Comms pkgs.signal-desktop #pkgs.mattermost-desktop @@ -129,7 +133,7 @@ systemd.user.services = { nextcloud-sync = { Unit = { - Description = "Auto sync Nextcloud"; + Description = "Auto sync Nextcloud"; After = "network-online.target"; }; Service = { |
