mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
nix: update to lockfile version
This commit is contained in:
parent
c0572e749d
commit
8f3bcec6f1
8 changed files with 107 additions and 113 deletions
|
|
@ -1,22 +1,18 @@
|
|||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
{pkgs, ...}: {
|
||||
programs.hyprland = {
|
||||
enable = true;
|
||||
withUWSM = false;
|
||||
xwayland.enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = [
|
||||
inputs.caelestia-shell.packages.x86_64-linux.default
|
||||
pkgs.mako
|
||||
pkgs.rofi-wayland
|
||||
pkgs.xdg-desktop-portal-wlr
|
||||
pkgs.xdg-desktop-portal-hyprland
|
||||
pkgs.hyprpolkitagent
|
||||
pkgs.cliphist
|
||||
pkgs.grimblast
|
||||
environment.systemPackages = with pkgs; [
|
||||
caelestia-shell
|
||||
mako
|
||||
rofi
|
||||
xdg-desktop-portal-wlr
|
||||
xdg-desktop-portal-hyprland
|
||||
hyprpolkitagent
|
||||
cliphist
|
||||
grimblast
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: let
|
||||
{pkgs, ...}: let
|
||||
fontPkgs = [
|
||||
pkgs.maple-mono.NF
|
||||
pkgs.sarasa-gothic
|
||||
|
|
@ -51,7 +47,7 @@ in {
|
|||
fontPkgs
|
||||
++ [
|
||||
# Add cursor supports
|
||||
pkgs.libsForQt5.breeze-qt5
|
||||
pkgs.kdePackages.breeze
|
||||
]; # with pkgs; [
|
||||
# libsForQt5.breeze-qt5
|
||||
|
||||
|
|
|
|||
7
nixcfgs/modules/nixos/gnome-keyring.nix
Normal file
7
nixcfgs/modules/nixos/gnome-keyring.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{pkgs, ...}: {
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
services.gnome.gcr-ssh-agent.enable = true;
|
||||
programs.ssh = {
|
||||
enableAskPassword = true;
|
||||
};
|
||||
}
|
||||
|
|
@ -11,15 +11,15 @@
|
|||
package = pkgs.qemu_kvm;
|
||||
runAsRoot = true;
|
||||
swtpm.enable = true;
|
||||
ovmf = {
|
||||
enable = true;
|
||||
packages = [
|
||||
(pkgs.OVMF.override {
|
||||
secureBoot = true;
|
||||
tpmSupport = true;
|
||||
}).fd
|
||||
];
|
||||
};
|
||||
# ovmf = {
|
||||
# enable = true;
|
||||
# packages = [
|
||||
# (pkgs.OVMF.override {
|
||||
# secureBoot = true;
|
||||
# tpmSupport = true;
|
||||
# }).fd
|
||||
# ];
|
||||
# };
|
||||
};
|
||||
};
|
||||
users.users.js0ny = {
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
type = "fcitx5";
|
||||
fcitx5 = {
|
||||
waylandFrontend = true;
|
||||
plasma6Support = true;
|
||||
# plasma6Support = true;
|
||||
addons = with pkgs; [
|
||||
fcitx5-rime
|
||||
kdePackages.fcitx5-configtool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue