Fix 1Password, add ime

This commit is contained in:
Artemis Tosini 2023-04-11 00:55:07 +00:00
parent a73cf6c684
commit 2a866a7b7a
Signed by: artemist
GPG key ID: EE5227935FE3FF18
6 changed files with 42 additions and 22 deletions

View file

@ -8,11 +8,11 @@
"utils": "utils" "utils": "utils"
}, },
"locked": { "locked": {
"lastModified": 1677757546, "lastModified": 1681092193,
"narHash": "sha256-tA1ukoluctzLVyWRaKtD4KlTwgXbUsGB5vcyni1OJ9I=", "narHash": "sha256-JerCqqOqbT2tBnXQW4EqwFl0hHnuZp21rIQ6lu/N4rI=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "86bb69b0b1e10d99a30c4352f230f03106dd0f8a", "rev": "f9edbedaf015013eb35f8caacbe0c9666bbc16af",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -24,11 +24,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1678095239, "lastModified": 1680876084,
"narHash": "sha256-4F6jovFJcwh6OkMsY94ZrHdrvVqZi1FX5pYv6V9LIQw=", "narHash": "sha256-eP9yxP0wc7XuVaODugh+ajgbFGaile2O1ihxiLxOuvU=",
"owner": "nixos", "owner": "nixos",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "f6610997b0fc5ea5f9e142c348fca27497efe1c7", "rev": "3006d2860a6ed5e01b0c3e7ffb730e9b293116e2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -39,11 +39,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1678137616, "lastModified": 1681041438,
"narHash": "sha256-T+lWTRdcYaOnZQW+Ehdlg+YldC2l9cq2GXJFPq22Nxc=", "narHash": "sha256-NmRGMklxBZ8Ol47CKMQxAU1F+v8ySpsHAAiC7ZL4vxY=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "7edcdf7b169c33cd3eef9aba50521ce93ee666b8", "rev": "48dcbaf7fa799509cbec85d55b8d62dcf1477d57",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -55,11 +55,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1678111249, "lastModified": 1681036984,
"narHash": "sha256-ZTIbK7vthZwti5XeLZE+twkb4l44q01q2XoLMmmJe94=", "narHash": "sha256-AbScJXshYzbeUKHh+Y3OICc3iAtr+NqJ3Xb81GW+ptU=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a028e2873d7fcf44e66b784b4ba061824315537f", "rev": "fd531dee22c9a3d4336cc2da39e8dd905e8f3de4",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -32,14 +32,15 @@ let
extraWorkspaces; extraWorkspaces;
in in
{ {
home.sessionVariables = {
MOZ_USE_XINPUT2 = 1;
_JAVA_AWT_WM_NONREPARENTING = 1;
GTK_THEME = "Adwaita-dark";
NIXOS_OZONE_WL = 1;
};
wayland.windowManager.sway = { wayland.windowManager.sway = {
enable = true; enable = true;
wrapperFeatures.gtk = true; wrapperFeatures.gtk = true;
extraSessionCommands = ''
export MOZ_USE_XINPUT2=1
export _JAVA_AWT_WM_NONREPARENTING=1
export GTK_THEME=Adwaita-dark
'';
config = { config = {
modifier = "Mod4"; modifier = "Mod4";
terminal = "kitty"; terminal = "kitty";

View file

@ -1,10 +1,11 @@
{ pkgs, ... }: { pkgs-unstable, ... }:
{ {
environment.systemPackages = with pkgs; [ programs._1password-gui = {
_1password enable = true;
_1password-gui package = pkgs-unstable._1password-gui;
]; polkitPolicyOwners = [ "artemis" ];
};
services.gnome.gnome-keyring.enable = true; services.gnome.gnome-keyring.enable = true;
programs.seahorse.enable = true; programs.seahorse.enable = true;
} }

16
sets/ime.nix Normal file
View file

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [ fcitx5-mozc fcitx5-gtk ];
};
environment.systemPackages = with pkgs; [ fcitx5-configtool ];
# Required for support in kitty, ibus/fcitx5 are somewhat compatible so this works
environment.variables.GLFW_IM_MODULE = "ibus";
home-manager.users.artemis.wayland.windowManager.sway.config.startup = [
{ command = "fcitx5 -d --replace"; always = true; }
];
}

View file

@ -10,6 +10,7 @@
]; ];
i18n.defaultLocale = "de_DE.UTF-8"; i18n.defaultLocale = "de_DE.UTF-8";
i18n.supportedLocales = [ "all" ];
environment = { environment = {
variables.EDITOR = "nvim"; variables.EDITOR = "nvim";

View file

@ -14,6 +14,7 @@
../../sets/sshd.nix ../../sets/sshd.nix
../../sets/virtualization.nix ../../sets/virtualization.nix
../../sets/workstation.nix ../../sets/workstation.nix
../../sets/ime.nix
../../sets/1password.nix ../../sets/1password.nix
inputs.nixos-hardware.nixosModules.common-cpu-amd inputs.nixos-hardware.nixosModules.common-cpu-amd
inputs.nixos-hardware.nixosModules.common-gpu-amd inputs.nixos-hardware.nixosModules.common-gpu-amd