Compare commits
1 Commits
98b245bbf0
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 99a93326b9 |
@@ -5,7 +5,7 @@
|
|||||||
./git.nix
|
./git.nix
|
||||||
./hjem.nix
|
./hjem.nix
|
||||||
./network.nix
|
./network.nix
|
||||||
./packages.nix
|
./packages
|
||||||
./timezone.nix
|
./timezone.nix
|
||||||
./nix.nix
|
./nix.nix
|
||||||
./pipewire.nix
|
./pipewire.nix
|
||||||
|
|||||||
6
modules/core/packages/default.nix
Normal file
6
modules/core/packages/default.nix
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./user.nix
|
||||||
|
./system.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
7
modules/core/packages/system.nix
Normal file
7
modules/core/packages/system.nix
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
zsh
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,16 +1,11 @@
|
|||||||
{ pkgs, username, inputs, ... }:
|
{ pkgs, username, ... }:
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
zsh
|
|
||||||
];
|
|
||||||
|
|
||||||
hjem.users.${username}.packages = with pkgs; [
|
hjem.users.${username}.packages = with pkgs; [
|
||||||
clang
|
clang
|
||||||
lld
|
lld
|
||||||
|
nixfmt
|
||||||
llvmPackages.bintools
|
llvmPackages.bintools
|
||||||
tlrc
|
tlrc
|
||||||
rustc
|
|
||||||
cargo
|
|
||||||
unzip
|
unzip
|
||||||
neovim
|
neovim
|
||||||
btop
|
btop
|
||||||
Reference in New Issue
Block a user