mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
argument cleanup
This commit is contained in:
parent
84799d53a6
commit
079ecd0d0c
12 changed files with 12 additions and 16 deletions
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ ... }:
|
||||
let
|
||||
persist = "/nix/persist";
|
||||
in
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
persist = "/nix/persist";
|
||||
in
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, modulesPath, pkgs, ... }:
|
||||
{ modulesPath, ... }:
|
||||
{
|
||||
sconfig.gnome = true;
|
||||
sconfig.desktop.enable = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
time.timeZone = "America/New_York";
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
programs.bash.interactiveShellInit = ''
|
||||
source <(kubectl completion bash)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
left_hard_divider = builtins.fromJSON '' "\uE0B0" '';
|
||||
upper_left_triangle = builtins.fromJSON '' "\uE0BC" '';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
config = lib.mkIf (config.sconfig.desktop.enable) {
|
||||
nixpkgs.config.chromium.commandLineArgs = toString [
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [ pkgs.kitty ];
|
||||
environment.etc."xdg/kitty/kitty.conf".text = ''
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.sconfig.new-lg4ff;
|
||||
in
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, lib, fetchFromGitHub, kernel, kmod }:
|
||||
{ stdenv, fetchFromGitHub, kernel }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "new-lg4ff-${kernel.version}";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
users.users.sean = {
|
||||
uid = 2000;
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
# https://feed-the-beast.com/
|
||||
|
||||
{ stdenv
|
||||
, autoPatchelfHook
|
||||
, fetchurl
|
||||
{ fetchurl
|
||||
, jre
|
||||
, bash
|
||||
, makeWrapper
|
||||
, writeShellScriptBin
|
||||
, buildFHSUserEnv
|
||||
}:
|
||||
|
|
Loading…
Reference in a new issue