Merge branch 'main' of github.com:FredzyW/nix

This commit is contained in:
FredzyW 2024-07-17 07:55:49 +02:00
commit 64e0a79009
3 changed files with 33 additions and 9 deletions

View file

@ -7,6 +7,9 @@
pkgs, pkgs,
... ...
}: { }: {
imports = [
../shared/vial.nix
];
nixpkgs = { nixpkgs = {
overlays = [ overlays = [
]; ];
@ -18,6 +21,8 @@
nix.registry = (lib.mapAttrs (_: flake: {inherit flake;})) ((lib.filterAttrs (_: lib.isType "flake")) inputs); nix.registry = (lib.mapAttrs (_: flake: {inherit flake;})) ((lib.filterAttrs (_: lib.isType "flake")) inputs);
nix.nixPath = ["/etc/nix/path"]; nix.nixPath = ["/etc/nix/path"];
users.defaultUserShell = pkgs.bash; users.defaultUserShell = pkgs.bash;
# environment.systemPackages = with pkgs; [
# ];
programs.fish.enable = true; programs.fish.enable = true;
programs.bash = { programs.bash = {
interactiveShellInit = '' interactiveShellInit = ''
@ -108,8 +113,8 @@
# }; # };
# }; # };
environment.systemPackages = [( environment.systemPackages = with pkgs; [(
pkgs.catppuccin-sddm.override { catppuccin-sddm.override {
flavor = "mocha"; flavor = "mocha";
font = "FiraCode Nerd Font Bold"; font = "FiraCode Nerd Font Bold";
fontSize = "17"; fontSize = "17";
@ -120,6 +125,12 @@
services = { services = {
udev = {
packages = with pkgs; [
vial
via
];
};
openssh = { openssh = {
enable = true; enable = true;
}; };

View file

@ -58,6 +58,7 @@
unzip unzip
zip zip
imagemagick imagemagick
ghostscript
killall killall
cmake cmake
feh feh
@ -88,7 +89,6 @@
#Terminal #Terminal
weechat weechat
jira-cli-go jira-cli-go
texliveSmall
jq jq
vscode vscode
@ -96,6 +96,9 @@
sc-im sc-im
gnuplot gnuplot
bison bison
tesseract
qrencode
texliveMedium
vdirsyncer vdirsyncer
todoist todoist
@ -138,6 +141,8 @@
openvpn3 openvpn3
aerc aerc
firefox firefox
chromium
vial
thunderbird thunderbird
spotify spotify
signal-desktop signal-desktop
@ -161,6 +166,7 @@
rofi rofi
rbw rbw
rofi-rbw rofi-rbw
teams-for-linux
#Dev #Dev
python3 python3

7
shared/vial.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ...}:
{
environment.systemPackages = with pkgs; [
vial
via
];
}