Compare commits
3 Commits
a39f38b3f2
...
f7afbe6973
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f7afbe6973 | ||
|
|
e917ea97c6 | ||
|
|
8378eec1e0 |
@@ -1,3 +1,12 @@
|
||||
(defcfg
|
||||
linux-dev-names-exclude (
|
||||
"ZSA Technology Labs Voyager"
|
||||
"ZSA Technology Labs Voyager Consumer Control"
|
||||
"ZSA Technology Labs Voyager Keyboard"
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
(deflocalkeys-linux
|
||||
ImpPt 99
|
||||
º 41
|
||||
|
||||
@@ -38,7 +38,7 @@ job "gitea" {
|
||||
|
||||
resources {
|
||||
cpu = 1000
|
||||
memory = 256
|
||||
memory = 400
|
||||
}
|
||||
|
||||
service {
|
||||
|
||||
37
flake.lock
generated
37
flake.lock
generated
@@ -240,6 +240,22 @@
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs_4": {
|
||||
"locked": {
|
||||
"lastModified": 1727348695,
|
||||
"narHash": "sha256-J+PeFKSDV+pHL7ukkfpVzCOO7mBSrrpJ3svwBFABbhI=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "1925c603f17fc89f4c8f6bf6f631a802ad85d784",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nur": {
|
||||
"locked": {
|
||||
"lastModified": 1733136078,
|
||||
@@ -263,7 +279,8 @@
|
||||
"hyprcursor-rose-pine": "hyprcursor-rose-pine",
|
||||
"nix-colors": "nix-colors",
|
||||
"nixpkgs": "nixpkgs_3",
|
||||
"nur": "nur"
|
||||
"nur": "nur",
|
||||
"zen-browser": "zen-browser"
|
||||
}
|
||||
},
|
||||
"systems": {
|
||||
@@ -328,6 +345,24 @@
|
||||
"repo": "flake-utils",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"zen-browser": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs_4"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1739222645,
|
||||
"narHash": "sha256-6FsTAjrO0TN5+gVxx3hmWqEJWs1sJ1p3E8DKWHdlN6M=",
|
||||
"owner": "youwen5",
|
||||
"repo": "zen-browser-flake",
|
||||
"rev": "7e60ade066a54797b376ebaf554bc2efa255ff8a",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "youwen5",
|
||||
"repo": "zen-browser-flake",
|
||||
"type": "github"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
|
||||
@@ -27,6 +27,10 @@
|
||||
|
||||
# - Hyprland ---------------------------------
|
||||
hyprcursor-rose-pine.url = "github:ndom91/rose-pine-hyprcursor";
|
||||
|
||||
# - More stuff -------------------------------
|
||||
zen-browser.url = "github:youwen5/zen-browser-flake";
|
||||
|
||||
};
|
||||
|
||||
outputs = inputs @ { self, nixpkgs, home-manager, ... }:
|
||||
|
||||
@@ -66,14 +66,7 @@ in
|
||||
server.vatnajokull.enable = true;
|
||||
|
||||
# - Keyboards -
|
||||
system.kanata = {
|
||||
enable = true;
|
||||
devices = [
|
||||
"/dev/input/by-path/platform-i8042-serio-0-event-kbd"
|
||||
"/dev/input/by-path/pci-0000:00:14.0-usb-0:9:1.0-event-kbd"
|
||||
"/dev/input/by-path/pci-0000:00:14.0-usbv2-0:9:1.0-event-kbd"
|
||||
];
|
||||
};
|
||||
system.kanata.enable = true;
|
||||
system.devices.voyager.enable = true;
|
||||
|
||||
# - Desktop ----------------------------------
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
};
|
||||
kernelModules = [ "kvm-intel" ];
|
||||
extraModulePackages = [ ];
|
||||
supportedFilesystems = [ "ntfs" ];
|
||||
};
|
||||
|
||||
fileSystems = {
|
||||
|
||||
26
modules/app/zen-browser.nix
Normal file
26
modules/app/zen-browser.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ config, lib, pkgs, inputs, system, ... }:
|
||||
|
||||
let
|
||||
cfg = config.samfelag.modules.app.zen-browser;
|
||||
i3Cfg = config.samfelag.modules.desktop.wm.i3;
|
||||
hyprCfg = config.samfelag.modules.desktop.wm.hyprland;
|
||||
zen-pkg = inputs.zen-browser.packages."${system}".default;
|
||||
in
|
||||
{
|
||||
options.samfelag.modules.app.zen-browser = {
|
||||
enable = lib.mkEnableOption "zen-browser";
|
||||
};
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
zen-pkg
|
||||
];
|
||||
|
||||
samfelag.modules.desktop.wm.i3.extraKeybindings = lib.mkIf i3Cfg.enable {
|
||||
"${i3Cfg.mod}+Shift+i" = "exec ${zen-pkg}/bin/zen";
|
||||
};
|
||||
|
||||
samfelag.modules.desktop.wm.hyprland.extraKeybindings = lib.mkIf hyprCfg.enable [
|
||||
"${hyprCfg.mod} SHIFT, i, exec, ${zen-pkg}/bin/zen"
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -118,7 +118,7 @@ in
|
||||
|
||||
app = {
|
||||
alacritty.enable = true;
|
||||
firefox.enable = true;
|
||||
zen-browser.enable = true;
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
@@ -6,11 +6,6 @@ in
|
||||
{
|
||||
options.samfelag.modules.system.kanata = {
|
||||
enable = lib.mkEnableOption "kanata";
|
||||
devices = lib.mkOption {
|
||||
type = lib.types.listOf lib.types.str;
|
||||
default = [];
|
||||
description = "Devices to use for kanata";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
@@ -22,7 +17,6 @@ in
|
||||
enable = true;
|
||||
keyboards = {
|
||||
internalKeyboard = {
|
||||
devices = cfg.devices;
|
||||
extraDefCfg = "process-unmapped-keys yes";
|
||||
configFile = ../../config/kanata/kanata.kbd;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user