Simplify some vars and such
This commit is contained in:
parent
96c74234c0
commit
eb34493b18
9 changed files with 7 additions and 22 deletions
|
@ -2,15 +2,6 @@
|
|||
{
|
||||
programs.looking-glass-client = {
|
||||
enable = if config.home.desktop.enable && config.nixpkgs.system == "x86_64-linux" then true else false;
|
||||
settings = {
|
||||
input = {
|
||||
rawMouse = true;
|
||||
escapeKey = 62;
|
||||
};
|
||||
spice = {
|
||||
enable = true;
|
||||
audio = true;
|
||||
};
|
||||
};
|
||||
settings.input.rawMouse = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -5,5 +5,6 @@
|
|||
ffmpegthumbnailer
|
||||
puddletag
|
||||
pulsemixer
|
||||
spotdl
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
|
||||
bc
|
||||
libreoffice
|
||||
vesktop
|
||||
];
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{ lib, pkgs, ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
bc
|
||||
dua
|
||||
p7zip
|
||||
vimv
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
./nh
|
||||
./nix-index
|
||||
./ranger
|
||||
./spotdl
|
||||
./tmux
|
||||
./yt-dlp
|
||||
./zsh
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, config, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.ranger = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home = lib.mkIf config.home.desktop.enable {
|
||||
packages = with pkgs; [ spotdl ];
|
||||
shellAliases.spotdl = "spotdl --m3u --format opus";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue