Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunsingh committed Nov 18, 2023
1 parent 169f3e6 commit 92b4b11
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 15 deletions.
1 change: 0 additions & 1 deletion hosts/c1/configuration.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{ pkgs
, lib
, inputs
, config
, ...
}:
Expand Down
2 changes: 1 addition & 1 deletion hosts/c1/hardware-configuration.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Do not modify this file! It was generated by ‘nixos-generate-config’
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{ config, lib, modulesPath, ... }:

{
imports =
Expand Down
2 changes: 1 addition & 1 deletion hosts/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ inputs, ... }:
{ ... }:

{
# nix-darwin configurations
Expand Down
6 changes: 1 addition & 5 deletions hosts/m1/configuration.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
{ pkgs
, lib
, inputs
, ...
}: {
{ ... }: {
security.pam.enableSudoTouchIdAuth = true;
}
2 changes: 1 addition & 1 deletion modules/parts/nixos.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let
cfg = config.parts.nixosConfigurations;
configurations = __mapAttrs (_: value: value._nixos) cfg;

nixosOpts = opts@{ config, name, ... }: {
nixosOpts = { config, name, ... }: {
options = {
server = lib.mkEnableOption "Host is a headless server configuration.";

Expand Down
4 changes: 2 additions & 2 deletions modules/shared/home-manager/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ config, inputs, inputs', lib, pkgs, system, ... }:
{ config, inputs, lib, pkgs, ... }:

/*
home-manager configuration
Expand Down Expand Up @@ -151,7 +151,7 @@
};
fish = {
enable = true;
shellAliases = with pkgs; {
shellAliases = {
":q" = "exit";
git-rebase = "git rebase -i HEAD~2";
ll = "${pkgs.eza}/bin/eza -lF --color-scale --no-user --no-time --no-permissions --group-directories-first --icons -a";
Expand Down
2 changes: 1 addition & 1 deletion modules/shared/nixos/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ config, lib, pkgs, options, inputs, inputs', system, ... }:
{ config, lib, pkgs, ... }:

/*
NixOS configuration
Expand Down
2 changes: 1 addition & 1 deletion users/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ config, lib, inputs, ... }:
{ ... }:
{
# home-manager configurations
parts.homeConfigurations = {
Expand Down
2 changes: 1 addition & 1 deletion users/shaunsingh/home.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ config, inputs, inputs', lib, pkgs, system, ... }:
{ config, lib, pkgs, ... }:

/*
home-manager configuration
Expand Down
2 changes: 1 addition & 1 deletion users/shaurizard/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"${config.home.homeDirectory}/.local/bin"
];

sessionVariables = with config.colorscheme.colors; {
sessionVariables = {
EDITOR = "nvim";
BROWSER = "firefox";
QT_QPA_PLATFORMTHEME = "qt5ct";
Expand Down

0 comments on commit 92b4b11

Please sign in to comment.