Establish baseline
This commit is contained in:
42
system-environment/config.nix
Normal file
42
system-environment/config.nix
Normal file
@@ -0,0 +1,42 @@
|
||||
{ pkgs, lib, ... }:
|
||||
let
|
||||
profile = import ../profile.nix;
|
||||
in
|
||||
{
|
||||
|
||||
imports = [
|
||||
#./file-system.nix
|
||||
./media.nix
|
||||
#./security/keyring.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
gnumake
|
||||
python3
|
||||
]
|
||||
++ lib.optionals profile.modules.development [
|
||||
cmake
|
||||
cmakeCurses
|
||||
|
||||
# C/C++/Fortran tools
|
||||
gcc
|
||||
clang
|
||||
|
||||
# Common C based dependencies
|
||||
eigen
|
||||
|
||||
# Ada/+Spark & Rust tools
|
||||
alire
|
||||
gnat15
|
||||
gnat15Packages.gprbuild
|
||||
gnat15Packages.gpr2
|
||||
gnat15Packages.gnatprove
|
||||
gnat15Packages.gnatcoll-core
|
||||
gnat15Packages.gnatcoll-readline
|
||||
gnat15Packages.gnatcoll-python3
|
||||
gnat15Packages.gnatcoll-gmp
|
||||
rustc
|
||||
cargo
|
||||
];
|
||||
|
||||
}
|
||||
19
system-environment/file-system.nix
Normal file
19
system-environment/file-system.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
|
||||
services.udisks2.enable = true;
|
||||
services.gvfs.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
nextcloud-client
|
||||
unzip
|
||||
deja-dup
|
||||
gnutar
|
||||
xz
|
||||
gzip
|
||||
gz-utils
|
||||
file
|
||||
fileinfo
|
||||
];
|
||||
|
||||
}
|
||||
12
system-environment/media.nix
Normal file
12
system-environment/media.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
|
||||
home.packages = with pkgs; [
|
||||
calibre
|
||||
kdePackages.okular
|
||||
vlc
|
||||
totem
|
||||
w3m
|
||||
epr
|
||||
];
|
||||
}
|
||||
15
system-environment/security/keyring.nix
Normal file
15
system-environment/security/keyring.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ pkgs, lib, ... }:
|
||||
let
|
||||
profile = import ../profile.nix;
|
||||
in
|
||||
{
|
||||
|
||||
imports = [ ];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
seahorse
|
||||
];
|
||||
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
security.pam.services.login.enableGnomeKeyring = true;
|
||||
}
|
||||
Reference in New Issue
Block a user