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:
parent
2dd63a14be
commit
8f30e84c2b
3 changed files with 14 additions and 16 deletions
|
@ -1,15 +1,5 @@
|
||||||
{ pkgs, systemConfiguration, systemFonts, ... }:
|
{ pkgs, systemConfiguration, systemFonts, ... }:
|
||||||
|
|
||||||
(with pkgs; systemFonts [
|
|
||||||
(nerdfonts.override {
|
|
||||||
fonts = [
|
|
||||||
"JetBrainsMono"
|
|
||||||
];
|
|
||||||
})
|
|
||||||
])
|
|
||||||
|
|
||||||
//
|
|
||||||
|
|
||||||
(systemConfiguration {
|
(systemConfiguration {
|
||||||
console = {
|
console = {
|
||||||
earlySetup = true;
|
earlySetup = true;
|
||||||
|
@ -19,3 +9,13 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
//
|
||||||
|
|
||||||
|
(with pkgs; systemFonts [
|
||||||
|
(nerdfonts.override {
|
||||||
|
fonts = [
|
||||||
|
"JetBrainsMono"
|
||||||
|
];
|
||||||
|
})
|
||||||
|
])
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, homeConfiguration, systemPackages, imports, enabled, ... }:
|
{ pkgs, systemPackages, homeConfiguration, imports, enabled, ... }:
|
||||||
|
|
||||||
(with pkgs; systemPackages [
|
(with pkgs; systemPackages [
|
||||||
xclip
|
xclip
|
||||||
|
@ -7,10 +7,8 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
(homeConfiguration "nixos" {
|
(homeConfiguration "nixos" {
|
||||||
programs.nushell = {
|
programs.nushell.environmentVariables = {
|
||||||
environmentVariables = {
|
EDITOR = "hx";
|
||||||
EDITOR = "hx";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.helix = enabled {
|
programs.helix = enabled {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, homeConfiguration, systemPackages, enabled, ... }:
|
{ pkgs, systemPackages, homeConfiguration, enabled, ... }:
|
||||||
|
|
||||||
(with pkgs; systemPackages [
|
(with pkgs; systemPackages [
|
||||||
(python311.withPackages (pkgs: with pkgs; [
|
(python311.withPackages (pkgs: with pkgs; [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue