mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
many updates to Kestrel
This commit is contained in:
parent
379627f1e6
commit
e073cdccd5
@ -15,17 +15,28 @@
|
|||||||
url = "https://github.com/wbthomason/packer.nvim.git"
|
url = "https://github.com/wbthomason/packer.nvim.git"
|
||||||
refreshPeriod = "168h"
|
refreshPeriod = "168h"
|
||||||
|
|
||||||
[".config/xmonad/xmonad"]
|
[".task"]
|
||||||
type = "git-repo"
|
type = "git-repo"
|
||||||
url = "https://github.com/xmonad/xmonad"
|
url = "git@github.com:starr-dusT/task.git"
|
||||||
refreshPeriod = "168h"
|
refreshPeriod = "168h"
|
||||||
|
|
||||||
[".config/xmonad/xmonad-contrib"]
|
["documents/zet"]
|
||||||
type = "git-repo"
|
type = "git-repo"
|
||||||
url = "https://github.com/xmonad/xmonad-contrib"
|
url = "git@github.com:starr-dusT/zet.git"
|
||||||
refreshPeriod = "168h"
|
refreshPeriod = "168h"
|
||||||
|
|
||||||
[".config/xmonad/xmobar"]
|
### OLD ###
|
||||||
type = "git-repo"
|
#[".config/xmonad/xmonad"]
|
||||||
url = "https://codeberg.org/xmobar/xmobar"
|
# type = "git-repo"
|
||||||
refreshPeriod = "168h"
|
# url = "https://github.com/xmonad/xmonad"
|
||||||
|
# refreshPeriod = "168h"
|
||||||
|
#
|
||||||
|
#[".config/xmonad/xmonad-contrib"]
|
||||||
|
# type = "git-repo"
|
||||||
|
# url = "https://github.com/xmonad/xmonad-contrib"
|
||||||
|
# refreshPeriod = "168h"
|
||||||
|
#
|
||||||
|
#[".config/xmonad/xmobar"]
|
||||||
|
# type = "git-repo"
|
||||||
|
# url = "https://codeberg.org/xmobar/xmobar"
|
||||||
|
# refreshPeriod = "168h"
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
sudo mount -t cifs -o rw,uid=$(id -u $(whoami)),gid=$(id -g $(whoami)),vers=3.0,credentials=/home/tstarr/.smb //192.168.1.136/private /home/tstarr/mnt/engi
|
sudo mount -t cifs -o rw,uid=$(id -u $(whoami)),gid=$(id -g $(whoami)),vers=3.0,credentials=/home/tstarr/.smb //192.168.1.175/private /home/tstarr/mnt/engi
|
||||||
|
@ -91,7 +91,8 @@ gaps left 0
|
|||||||
|
|
||||||
for_window [title="Steam - News"] floating enable
|
for_window [title="Steam - News"] floating enable
|
||||||
for_window [title="Friends List"] floating enable
|
for_window [title="Friends List"] floating enable
|
||||||
for_window [title="Picture-in-Picture"] sticky toggle
|
for_window [title=".*mpv$"] sticky toggle
|
||||||
|
for_window [title=".*mpv$"] floating enable
|
||||||
|
|
||||||
for_window [app_id="file"] floating enable, \
|
for_window [app_id="file"] floating enable, \
|
||||||
border pixel 5, \
|
border pixel 5, \
|
||||||
@ -197,6 +198,7 @@ mode open {
|
|||||||
bindsym b exec chromium, $e
|
bindsym b exec chromium, $e
|
||||||
bindsym s exec steam || flatpak run com.valvesoftware.Steam, $e
|
bindsym s exec steam || flatpak run com.valvesoftware.Steam, $e
|
||||||
bindsym d exec discord || flatpak run com.discordapp.Discord, $e
|
bindsym d exec discord || flatpak run com.discordapp.Discord, $e
|
||||||
|
bindsym m exec mpv $(wl-paste), $e
|
||||||
bindsym Escape mode default
|
bindsym Escape mode default
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
# Define user account.
|
# Define user account.
|
||||||
users.users.${user} = {
|
users.users.${user} = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "docker" "libvirtd" ]; # Enable ‘sudo’ for the user.
|
extraGroups = [ "dialout" "wheel" "docker" "libvirtd" ]; # Enable ‘sudo’ for the user.
|
||||||
};
|
};
|
||||||
|
|
||||||
# List packages installed in system profile.
|
# List packages installed in system profile.
|
||||||
|
@ -4,10 +4,17 @@ let cfg = config.modules.services.peripherals;
|
|||||||
in {
|
in {
|
||||||
options.modules.services.peripherals.enable = lib.mkEnableOption "peripherals";
|
options.modules.services.peripherals.enable = lib.mkEnableOption "peripherals";
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
# Enable sound.
|
|
||||||
sound.enable = true;
|
# rtkit is optional but recommended
|
||||||
hardware.pulseaudio.enable = true;
|
security.rtkit.enable = true;
|
||||||
hardware.pulseaudio.support32Bit = true;
|
services.pipewire = {
|
||||||
|
enable = true;
|
||||||
|
alsa.enable = true;
|
||||||
|
alsa.support32Bit = true;
|
||||||
|
pulse.enable = true;
|
||||||
|
# If you want to use JACK applications, uncomment this
|
||||||
|
#jack.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
gvfs.enable = true;
|
gvfs.enable = true;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ config, lib, pkgs, user, ... }:
|
{ config, lib, pkgs, pkgs-unstable, user, ... }:
|
||||||
|
|
||||||
let cfg = config.modules.system.terminal;
|
let cfg = config.modules.system.terminal;
|
||||||
in {
|
in {
|
||||||
@ -32,6 +32,13 @@ in {
|
|||||||
# for neovim
|
# for neovim
|
||||||
nodejs
|
nodejs
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|
||||||
|
] ++ [
|
||||||
|
pkgs-unstable.taskwarrior
|
||||||
|
# for taskwarrior
|
||||||
|
pkgs-unstable.taskwarrior-tui
|
||||||
|
pkgs-unstable.taskopen
|
||||||
|
pkgs-unstable.timewarrior
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user