232 current 2024-10-25 12:10:10 24.05.20241019.a9b86fc 6.11.4 *

This commit is contained in:
Ranomier 2024-10-25 12:10:16 +02:00
parent d312b9e299
commit 58ada4c0cd
4 changed files with 75 additions and 68 deletions

View file

@ -1,6 +1,5 @@
{
pkgs,
overlays,
inputs,
...
}: {
@ -16,9 +15,32 @@
# Allow unfree packages
#unstable.config.allowUnfree = true;
nixpkgs.config.allowUnfree = true;
#nixpkgs.overlays = [ overlays.unstable-packages ];
nixpkgs = {
# You can add overlays here
overlays = with inputs.self.overlays; [
# Add overlays your own flake exports (from overlays and pkgs dir):
#additions
#modifications
unstable-packages
# You can also add overlays exported from other flakes:
# neovim-nightly-overlay.overlays.default
# Or define it inline, for example:
# (final: prev: {
# hi = final.hello.overrideAttrs (oldAttrs: {
# patches = [ ./change-hello-to-hi.patch ];
# });
# })
];
# Configure your nixpkgs instance
config = {
# Disable if you don't want unfree packages
allowUnfree = true;
};
};
nix.settings.experimental-features = ["nix-command" "flakes"];

View file

@ -12,7 +12,7 @@
--remember \
--user-menu \
--theme 'border=lightgreen;text=lightgreen;prompt=lightgreen;time=lightgreen;action=lightgreen;button=lightgreen;input=lightgreen' \
--cmd hyprland'';
--cmd Hyprland'';
# removed elements from theme: container
user = "greeter";
};

View file

@ -1,12 +1,4 @@
{
pkgs,
inputs,
...
}: let
unstable_list = with inputs.nixpkgs-unstable.legacyPackages."x86_64-linux"; [
neovim
];
in {
{pkgs, ...}: {
# also opens the TCP and UDP port from 1714 to 1764
programs.kdeconnect.enable = true;
@ -20,8 +12,7 @@ in {
exec "${pkgs.amberol}/bin/amberol" "$@"
'';
in
with pkgs;
[
with pkgs; [
# low level stuff
efibootmgr
#exfat
@ -36,8 +27,7 @@ in {
usbutils
lm_sensors
# neovim
# unstable.neovim
unstable.neovim
git
gnumake
gcc
@ -73,8 +63,7 @@ in {
keepassxc
#minecraft
element-desktop
]
++ unstable_list;
];
fonts.packages = with pkgs; [
noto-fonts

View file

@ -1,8 +1,4 @@
{
pkgs,
inputs,
...
}: {
{pkgs, ...}: {
# Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session.
services.xserver.enable = false;