Merge branch 'main' of github.com:FredzyW/nix
This commit is contained in:
commit
64e0a79009
3 changed files with 33 additions and 9 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
|
@ -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
7
shared/vial.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, ...}:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
vial
|
||||||
|
via
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue