Compare commits

...

5 Commits

7 changed files with 35 additions and 8 deletions

View File

@ -16,7 +16,7 @@
{ ...}:
{
pio = { pkgs, ... }: {
services.udev.packages = with pkgs; [ platformio-core.udev ];
services.udev.packages = with pkgs; [ platformio-core.udev yubikey-personalization ];
services.udev.extraRules = ''
ACTION=="remove",\
ENV{ID_BUS}=="usb",\

Binary file not shown.

View File

@ -85,7 +85,7 @@ rec {
"networkmanager"
];
hashedPasswordFile = config.age.secrets.user.path;
#hashedPasswordFile = config.age.secrets.user.path;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG3aV2dwnll3KxFR57Oj6Br51c7gJ/pkRa+IkKM6slve lxsameer@lxsameer.com"

View File

@ -118,6 +118,11 @@
shotwell
flameshot
inkscape
gimp
krita
rawtherapee
pinentry-curses
];
# basic configuration of git, please change to your own
@ -341,9 +346,11 @@
services.gpg-agent = {
enable = true;
enableSshSupport = lib.mkForce false;
pinentryFlavor = "curses";
enableSshSupport = lib.mkForce true;
};
gtk = {
enable = true;
iconTheme.package = pkgs.gnome.adwaita-icon-theme;

View File

@ -20,7 +20,7 @@
];
stylix.image = lib.mkForce ./wallpaper.jpg;
stylix.polarity = "light";
stylix.polarity = "dark";
stylix.fonts = {
serif = {
package = pkgs.vazir-fonts;
@ -42,10 +42,10 @@
name = "Noto Color Emoji";
};
sizes = {
applications = 10;
desktop = 10;
applications = 12;
desktop = 12;
popups = 10;
terminal = 10;
terminal = 12;
};
};
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 552 KiB

After

Width:  |  Height:  |  Size: 2.8 MiB

View File

@ -39,7 +39,28 @@ let
boot.blacklistedKernelModules = [ "mt7921e" ];
hardware.enableRedistributableFirmware = true;
hardware.cpu.amd.updateMicrocode = true;
hardware.bluetooth.enable = true; # enables support for Bluetooth
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
hardware.bluetooth.settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
};
hardware.pulseaudio = {
enable = true;
package = pkgs.pulseaudioFull;
};
systemd.user.services.mpris-proxy = {
description = "Mpris proxy";
after = [ "network.target" "sound.target" ];
wantedBy = [ "default.target" ];
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
};
services.blueman.enable = true;
services.xserver.enable = true;
services.xserver.autorun = lib.mkForce true;
services.xserver.desktopManager.plasma5.enable = true;
@ -83,7 +104,6 @@ let
id = [ "24571716" "24571727" ];
};
};
};
mary = pkgs.callPackage ../users/mary/default.nix {};