1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Reorder placement of expressions

This commit is contained in:
RGBCube 2023-05-24 19:57:08 +03:00
parent 2dd63a14be
commit 8f30e84c2b
No known key found for this signature in database
3 changed files with 14 additions and 16 deletions

View file

@ -1,15 +1,5 @@
{ pkgs, systemConfiguration, systemFonts, ... }:
(with pkgs; systemFonts [
(nerdfonts.override {
fonts = [
"JetBrainsMono"
];
})
])
//
(systemConfiguration {
console = {
earlySetup = true;
@ -19,3 +9,13 @@
];
};
})
//
(with pkgs; systemFonts [
(nerdfonts.override {
fonts = [
"JetBrainsMono"
];
})
])

View file

@ -1,4 +1,4 @@
{ pkgs, homeConfiguration, systemPackages, imports, enabled, ... }:
{ pkgs, systemPackages, homeConfiguration, imports, enabled, ... }:
(with pkgs; systemPackages [
xclip
@ -7,10 +7,8 @@
//
(homeConfiguration "nixos" {
programs.nushell = {
environmentVariables = {
EDITOR = "hx";
};
programs.nushell.environmentVariables = {
EDITOR = "hx";
};
programs.helix = enabled {

View file

@ -1,4 +1,4 @@
{ pkgs, homeConfiguration, systemPackages, enabled, ... }:
{ pkgs, systemPackages, homeConfiguration, enabled, ... }:
(with pkgs; systemPackages [
(python311.withPackages (pkgs: with pkgs; [