Attempting to fix infinite recursion
parent
4bd33ebe3d
commit
b510522ae5
|
@ -36,12 +36,14 @@
|
|||
in {
|
||||
# Laptop NixOS configuration
|
||||
nixosConfigurations = {
|
||||
default = lib.nixosSystem {
|
||||
puter = lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
nixos-hardware.nixosModules.framework-11th-gen-intel
|
||||
./system
|
||||
./programs
|
||||
./hertog/user.nix
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, inputs }:
|
||||
{ pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
programs.home-manage.enable = true;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ config, lib }:
|
||||
{ pkgs, config }:
|
||||
let
|
||||
config = import ../../theming/colorScheme.nix;
|
||||
config.colorScheme = import ../../theming/colorScheme.nix;
|
||||
modifierKey = config.wayland.windowManager.sway.config.modifier;
|
||||
in
|
||||
{
|
||||
|
@ -18,7 +18,7 @@ in
|
|||
{command = "swaybg -i /etc/nixos/theming/background.svg";}
|
||||
{command = "keepassxc /home/hertog/Documents/Belangrijk/Wachtwoorden.kdbx";}
|
||||
];
|
||||
keybindings = lib.mkOptionDefault {
|
||||
keybindings = pkgs.lib.mkOptionDefault {
|
||||
"XF86MonBrightnessUp" = "exec light -A 5";
|
||||
"XF86MonBrightnessDown" = "exec light -U 5";
|
||||
"XF86AudioMute" = "exec pamixer -t";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ config }:
|
||||
let
|
||||
config = import ../../theming/colorScheme.nix;
|
||||
config.colorScheme = import ../../theming/colorScheme.nix;
|
||||
in
|
||||
{
|
||||
programs.waybar = {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ config }:
|
||||
let
|
||||
config = import ../../theming/colorScheme.nix;
|
||||
config.colorScheme = import ../../theming/colorScheme.nix;
|
||||
in
|
||||
{
|
||||
programs.wofi = {
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
shellAliases = {
|
||||
ll = "ls -l";
|
||||
please = "sudo";
|
||||
update = "sudo nixos-rebuild switch --flake /etc/nixos/#laptop";
|
||||
update = "sudo nixos-rebuild switch --flake /etc/nixos/#puter";
|
||||
vim = "nix run git+https://git.saragerretsen.nl/Hertog/HertogVim";
|
||||
vimUpdate = "nix run --refresh git+https://git.saragerretsen.nl/Hertog/HertogVim";
|
||||
sudovim = "sudo nix run git+https://git.saragerretsen.nl/Hertog/HertogVim";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, nix-flatpak }:
|
||||
{ pkgs, nix-flatpak, ... }:
|
||||
let
|
||||
mini-text = pkgs.callPackage ../../Programs/MiniText { };
|
||||
hyperplane = pkgs.callPackage ../../Programs/Hyperplane { };
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
security = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.xserver = {
|
||||
|
|
Loading…
Reference in New Issue