mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-25 02:03:51 -08:00
Compare commits
3 commits
46b401cf8d
...
d2054b4658
Author | SHA1 | Date | |
---|---|---|---|
d2054b4658 | |||
b1f32afad7 | |||
6e2f583df1 |
7 changed files with 36 additions and 23 deletions
24
flake.lock
24
flake.lock
|
@ -3,10 +3,10 @@
|
|||
"apple-firmware": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1725472850,
|
||||
"narHash": "sha256-v+4olhpAPlvNBuQT0wRel4Jn++5m+TQ5seETUR12/MA=",
|
||||
"lastModified": 1725473433,
|
||||
"narHash": "sha256-XG87QYz9zUwxkcft5SaF11ZZNtBT/xuy0uX7EcjPkJ8=",
|
||||
"ref": "refs/heads/main",
|
||||
"rev": "a967c5942a7f44feabd0326a23ada2b701ea157b",
|
||||
"rev": "890d58bbfa4eeb1d6fbe3e44066a60c7b697b09d",
|
||||
"revCount": 4,
|
||||
"type": "git",
|
||||
"url": "https://code.youwen.dev/youwen5/apple-firmware"
|
||||
|
@ -463,11 +463,11 @@
|
|||
"homebrew-cask": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1725469445,
|
||||
"narHash": "sha256-4Pl4yst8JEOccjgV7YwhIwxabqzzlB/QGz78FwNETjw=",
|
||||
"lastModified": 1725501205,
|
||||
"narHash": "sha256-D6p9yB1FMMTuA5aqfsGVlEqkdMHduDhW6xX6STGNrt0=",
|
||||
"owner": "homebrew",
|
||||
"repo": "homebrew-cask",
|
||||
"rev": "72dbcb18f030b82b19cb9369b4f9f1d21b44ecf0",
|
||||
"rev": "8eea8e79afdf33b69942152cb51b9a5a9de33909",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -479,11 +479,11 @@
|
|||
"homebrew-core": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1725471439,
|
||||
"narHash": "sha256-gtGqdvNVTUN8XDxnxkM6u3AGtiCLATl2a41PUwdsbWU=",
|
||||
"lastModified": 1725506810,
|
||||
"narHash": "sha256-lL9FCv/F8c6OnKDUGVFn+NGcLINvFmT6k7V9bz4D9X8=",
|
||||
"owner": "homebrew",
|
||||
"repo": "homebrew-core",
|
||||
"rev": "f5f0fe76ba9e88cc3b713492bc58fffd2b1bfff5",
|
||||
"rev": "5aa28cd709af61d2aca3313b9076a2f39a87cc9b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -1035,11 +1035,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1725425585,
|
||||
"narHash": "sha256-yAQIw1wZlhdZaIt9VjiiMhWCx3hndVk1ZV9Boq0CIXs=",
|
||||
"lastModified": 1725509287,
|
||||
"narHash": "sha256-ygQeCxv0EISqsIyw1XFIaYHJNHgEMjcGCsg8xPzvGc4=",
|
||||
"owner": "youwen5",
|
||||
"repo": "zen-browser-flake",
|
||||
"rev": "9c9a6a8073f800d949ffd68a6f4a1531998082ce",
|
||||
"rev": "36c71e7e5ea0942f8c3b6af04e74f10ffd6bad2b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
../../modules/linux/core
|
||||
../../modules/linux/hamachi
|
||||
../../modules/linux/desktop-portal
|
||||
../../modules/linux/audio-prod
|
||||
../../modules/linux/wine
|
||||
../../overlays
|
||||
|
||||
catppuccin.nixosModules.catppuccin
|
||||
|
|
8
modules/linux/audio-prod/default.nix
Normal file
8
modules/linux/audio-prod/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
reaper
|
||||
yabridge
|
||||
yabridgectl
|
||||
];
|
||||
}
|
|
@ -7,12 +7,7 @@
|
|||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
# If you want to use JACK applications, uncomment this
|
||||
#jack.enable = true;
|
||||
|
||||
# use the example session manager (no others are packaged yet so this is enabled by default,
|
||||
# no need to redefine it in your config for now)
|
||||
#media-session.enable = true;
|
||||
jack.enable = true;
|
||||
};
|
||||
|
||||
services.playerctld.enable = true;
|
||||
|
|
12
modules/linux/wine/default.nix
Normal file
12
modules/linux/wine/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
winetricks
|
||||
wine
|
||||
];
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
wine = super.wineWowPackages.stable;
|
||||
})
|
||||
];
|
||||
}
|
|
@ -16,7 +16,6 @@ in
|
|||
bitwarden-desktop
|
||||
modrinth-app
|
||||
lutris
|
||||
wine
|
||||
sbctl
|
||||
r2modman
|
||||
]
|
||||
|
|
|
@ -17,12 +17,9 @@
|
|||
background_opacity = "0.8";
|
||||
allow_remote_control = "socket-only";
|
||||
listen_on = "unix:/tmp/kitty";
|
||||
# action_alias = "kitty_scrollback_nvim kitten /home/youwen/.local/share/nvim/lazy/kitty-scrollback.nvim/python/kitty_scrollback_nvim.py";
|
||||
scrollback_pager = ''nvim --noplugin -c "set signcolumn=no showtabline=0" -c "silent write! /tmp/kitty_scrollback_buffer | te cat /tmp/kitty_scrollback_buffer - "'';
|
||||
scrollback_pager = ''nvim --noplugin -c "set signcolumn=no showtabline=0 clipboard=unnamedplus" -c "silent write! /tmp/kitty_scrollback_buffer | te cat /tmp/kitty_scrollback_buffer - "'';
|
||||
};
|
||||
keybindings = {
|
||||
# "kitty_mod+h" = "kitty_scrollback_nvim";
|
||||
# "kitty_mod+g" = "kitty_scrollback_nvim --config ksb_builtin_last_cmd_output";
|
||||
"kitty_mod+h" = "show_scrollback";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue